Find the SQL statement below that is equal to the following: SELECT NAME FROM CUSTOMER WHERE STATE = 'VA':
Answer :
SELECT NAME FROM CUSTOMER WHERE STATE IN ('VA');
Which of the following is the original purpose of SQL?
Answer :
A) To specify the syntax and semantics of SQL data definition language B) To specify the syntax and semantics of SQL manipulation language C) To define the data structures All of the above