THE BIG FOUR SQL STATEMENTS
INSERT
One great thing about SQL is that the commands/statements are self describing. So in this case, the ‘insert’ command allows you to insert new data into a database.
SELECT
The ’select’ command allows you to select (pull out) specific pieces of information from a database.
UPDATE
The ‘update’ command allows you to update records/information already in the database.
DELETE
The ‘delete’ command allows you delete information in the database. Like all the other commands you can tweak the command so as to target specific data in the database. Anyway, we will look at that a little later …
Tags: sql

