SQL Flashcards
1
Q
; (semicolon)
A
Semicolons are entered at the end of a query to indicate it is the end of the query.
2
Q
- (Asterisk)
A
Signifies “all”
3
Q
SELECT
A
Indicates which columns to return.
4
Q
FROM
A
Indicates which columns to query.
5
Q
WHERE
A
Indicates the condition for a filter.
Ex: WHERE country = ‘usa’