Welcome to the Treehouse Community

Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.

Looking to learn something new?

Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.

Start your free trial

Databases Reporting with SQL Working with Text Adding Text Columns Together

What SELECT keyword actually do?

We used SELECT keyword to select particular columns in the row, how can SELECT keyword is performing operations?

1 Answer

Jonathan Grieve
MOD
Jonathan Grieve
Treehouse Moderator 91,252 Points

The select keyword is the clause that allows you to select what data fields will be returned in your query.

Let's say for example you have a table called "movies" that has 5 fields.

  • Title
  • Age Restriction
  • Director
  • Runtime
  • Main Lead

But you wanted to run a query that only selected 3 of those fields. You'd write

SELECT Title, Director, Runtime FROM movies;

Or to select them all quickly you'd do.

SELECT * FROM movies;

Those are the very basics of the select clause.

Hi Jonathan Grieve,

Thank you for your input, but what about this, SELECT UPPER('Hello');

Jonathan Grieve
Jonathan Grieve
Treehouse Moderator 91,252 Points

This an SQL function that converts the string that is passed into Uppercase i.e. Capital letters.

You might use it for example to convert the records of a given column into upper case text.