Now that you've learned how to insert and select data from a table, let's put that to use. We're going to use the cats table we created in the last lab and insert some data into it. Then we'll write ...
insert into student (first_name, last_name, years_of_experience, start_date) values ('Eric','Ephram',2,'2016-03-31'); insert into student (first_name, last_name ...