Introduction to SQL
Which of the following are the five built-in functions provided by SQL?

COUNT, SUM, AVG, MAX, MIN
SUM, AVG, MULT, DIV, MIN
SUM, AVG, MIN, MAX, NAME
SUM, AVG, MIN, MAX, MULT

ANSWER DOWNLOAD EXAMIANS APP

Introduction to SQL
Find the SQL statement below that is equal to the following: SELECT NAME FROM CUSTOMER WHERE STATE = 'VA';

SELECT NAME FROM CUSTOMER WHERE STATE IN ('VA');
SELECT NAME IN CUSTOMER WHERE STATE IN ('VA');
SELECT NAME IN CUSTOMER WHERE STATE = 'VA';
SELECT NAME IN CUSTOMER WHERE STATE = 'V';

ANSWER DOWNLOAD EXAMIANS APP