Chapter 2: The SQL Language: Be able to use SQL to do the following.
Create a “Book” table with four columns:
Load the Book table with a half-dozen sample book records.
Consider the following SQL query.
SELECT title FROM Book WHERE price < 50.00;
You can find additional basic SQL examples here: SQL Examples.