Paper 2 Flashcards
1
Q
The data shown above is stored in a database table called conduct.
Write an sql statement to select the StudentName field for all records that have negative points
A
SELECT StudentName
FROM conduct
WHERE Points < 0
2
Q
state the wildcard that can be used in SQL to show all fields from a table
A
asterisk
3
Q
A