From 00e9b8ff274fb44b64155503ab2cc4941bb52cc0 Mon Sep 17 00:00:00 2001 From: akilah515-wq Date: Sun, 22 Mar 2026 15:07:03 -0500 Subject: [PATCH] Fix typo in comment about column order --- Beginner - Select Statement.sql | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Beginner - Select Statement.sql b/Beginner - Select Statement.sql index a2e05ef..dd15688 100644 --- a/Beginner - Select Statement.sql +++ b/Beginner - Select Statement.sql @@ -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 @@ -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. \ No newline at end of file +#select statement so this is kind of just an introduction to the select statement.