SQL Flashcards
1
Q
What does SQL stand for
A
Structured Query Language
2
Q
What info would you need to delete a row in a table
A
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
3
Q
What does SQL do
A
It allows fast and efficient data base querying
4
Q
Turn the English statement into SQL:
Delete from FORM where Fromname is ‘9C’
A
SQL:
DELETE FROM Form
WHERE Formname = 9C’
5
Q
Turn the English statement into SQL:
Insert into FORM the values 10C, Miss Badman, B12
A
SQL:
INSERT INTO Form
VALUES (10C, Miss Badman, B12)