ensure that required columns are filled with data and that we do not enter duplicate entries by accident
Anonymous Quiz
6%
Comments
94%
Constraints
for inserting rows into table The easiest technique is to import data from a text file or another database.
Anonymous Quiz
79%
T
21%
F
Formatting SQL For readability: SQL keywords, such as SELECT, are capitalized.
Anonymous Quiz
95%
T
5%
F
Retrieve all values from ‘state’ column
Anonymous Quiz
13%
SELECT contributors FROM state
61%
SELECT state FROM contributors
2%
SELECT VALUE state FROM contributors
24%
All of the above
Every row's state value would be changed to "NE“
Anonymous Quiz
16%
UPDATE contributors WHERE state = ‘NE’
63%
UPDATE contributors SET state = ‘NE’
21%
UPDATE contributors SET state = ‘NE’ WHERE state = ‘Nebraska’