In SQL, to refer to a range of values in a WHERE clause, use the WITHIN
keyword.
T/F? - 🧠 ANSWER ✔✔False
The ON DELETE CASCADE referential integrity constraint does not apply
when rows are deleted using the SQL DELETE command.
T/F? - 🧠 ANSWER ✔✔False
When using SQL to create a table, specifying the NULL property for a
column indicates that only null values may be stored in that column.
T/F? - 🧠 ANSWER ✔✔False
Microsoft Access can run QBE queries, but not SQL queries.
, T/F? - 🧠 ANSWER ✔✔False
Which of the following is not one of the five SQL built-in functions?
a. AVG
b. SUM
c. MAX
d. COUNT
e. MODE - 🧠 ANSWER ✔✔MODE
In SQL, the LIKE keyword can be combined with the NOT keyword to form
the NOT LIKE condition for selecting values.
T/F? - 🧠 ANSWER ✔✔True
Given the table
CUSTOMER(CustID, Name, PhoneNum, AcctBalance)
what is the standard SQL query phrase to retrieve the Name and Phone
Number of customers?
a.) SELECT (CUSTOMER-Name AND CUSTOMER-PhoneNum)