This page is also available in English: Switch to northdata.com | Hinweis nicht mehr anzeigen

Sql: With Practice Exercises, Learn Sql Fast «Chrome»

SQL isn't case-sensitive ( select is the same as SELECT ), but writing keywords in CAPS makes your code easier to read.

SELECT Name FROM Employees WHERE Department = 'Engineering'; Exercise 2: Sorting and Filtering SQL: with practice exercises, Learn SQL Fast

SELECT * FROM Employees WHERE Salary > 75000 ORDER BY Salary DESC; Exercise 3: Aggregates Goal: Find the average salary of all employees. Your Code: SELECT AVG(Salary) FROM Employees; 4. Quick Tips for Success SQL isn't case-sensitive ( select is the same

Always end your statements with a ; to tell the database you're done. to tell the database you're done.