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 trialRushabha Jain
Front End Web Development Techdegree Student 9,859 PointsWhat 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
Treehouse Moderator 91,253 PointsThe 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.
Rushabha Jain
Front End Web Development Techdegree Student 9,859 PointsRushabha Jain
Front End Web Development Techdegree Student 9,859 PointsHi Jonathan Grieve,
Thank you for your input, but what about this, SELECT UPPER('Hello');
Jonathan Grieve
Treehouse Moderator 91,253 PointsJonathan Grieve
Treehouse Moderator 91,253 PointsThis 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.