SQL query commands

Complete the following SQL query commands practice tutorials listed down the left side of the page:

SQL Syntax
SQL Select
SQL Select Distinct
SQL Where
SQL And, Or, Not
SQL Order By
SQL Insert Into
SQL Null Values
SQL Update
SQL Delete
Each SQL command practice tutorial includes a query of the Demo Database.

For each of the SQL commands above, indicate the syntax and show the resulting table from each query of the Demo Database. For example: For the Where command, you will include the following:

Where

Syntax:

SELECT * FROM Customers

WHERE Country='Mexico';Results:

Submit the syntax and results for each SQL command.

Sample Solution