Untitled
To see SQL in action we first need a database and a table of data.
Accessing Your Database
Creating a Table
CREATE TABLE IF NOT EXISTS todos (
);
CREATE the verb of our sentence. TABLE the direct object of the verb IF NOT EXISTS this is a clause that todos this is the name we are going to give the table. Once we establish a table in this way