Skip to content

Commit 5605148

Browse files
committed
SQL Basics for beginners
1 parent 45e2767 commit 5605148

2 files changed

+6
-0
lines changed

SQLQuery - Basics For Beginners - Updated Comments.sql

+2
Original file line numberDiff line numberDiff line change
@@ -290,3 +290,5 @@ ORDER BY Age DESC, Gender ASC /* this orders by age, then under age, it orders b
290290
SELECT *
291291
FROM EmployeeDemographics
292292
ORDER BY 4 DESC, 5 ASC /* this orders by age, then under age, it orders by gender */
293+
294+
/* END */

SQLQuery - Basics For Beginners.sql

+4
Original file line numberDiff line numberDiff line change
@@ -252,3 +252,7 @@ ORDER BY Age DESC, Gender ASC /* this orders by age, then under age, it orders b
252252
SELECT *
253253
FROM EmployeeDemographics
254254
ORDER BY 4 DESC, 5 ASC /* this orders by age, then under age, it orders by gender */
255+
256+
257+
258+
/* END */

0 commit comments

Comments
 (0)