SQL Flashcards

1
Q

What does SQL stand for

A

Structured Query Language

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
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

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

What does SQL do

A

It allows fast and efficient data base querying

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

Turn the English statement into SQL:

Delete from FORM where Fromname is ‘9C’

A

SQL:
DELETE FROM Form
WHERE Formname = 9C’

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
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)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly