What does SQL stand for
Structured Query Language
What info would you need to delete a row in a table
1) The intention was to delete
2) The table to delete it from
3) Which record we want to delete and where to identify it
What does SQL do
It allows fast and efficient data base querying
Turn the English statement into SQL:
Delete from FORM where Fromname is ‘9C’
SQL:
DELETE FROM Form
WHERE Formname = 9C’
Turn the English statement into SQL:
Insert into FORM the values 10C, Miss Badman, B12
SQL:
INSERT INTO Form
VALUES (10C, Miss Badman, B12)