TABLE BASICS
What does SQL stand for?
What is Structured Query Language?
With SQL, how do you select all the records from a table named "Persons" where the value of the column "FirstName" is "Peter".
What is SELECT * FROM Persons WHERE FirstName='Peter'?
This SQL keyword is used to sort the result-set.
What is Order By?
This operator is used to select values within a range.
What is Between?
This type of query is a SQL query inside another SQL query.
What is a Nested Query?