Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions Beginner - Select Statement.sql
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ FROM employee_demographics;
SELECT first_name, last_name
FROM employee_demographics;

#Now the order doesn't normall matter when selecting your columns.
#Now the order doesn't normally matter when selecting your columns.
#There are some use cases we will look at in later modules where the order of the column
#Names in the select statement will matter, but for this you can put them in any order

Expand Down Expand Up @@ -79,4 +79,4 @@ SELECT DISTINCT department_id
FROM employee_salary;

#Now a lot happens in the select statement. We have an entire module dedicated to just the
#select statement so this is kind of just an introduction to the select statement.
#select statement so this is kind of just an introduction to the select statement.