Which three are valid SQL commands? (Choose three.)
- SELECT
- UPDATE
- DESTROY
- ALTER
- MODIFY
Explanation & Hint:
The three valid SQL commands among the options provided are:
“DESTROY” and “MODIFY” are not standard SQL commands. “MODIFY” might be confused with “ALTER TABLE… MODIFY”, which is a clause used in some SQL dialects (like MySQL) to change a column in a table, but on its own, “MODIFY” is not a standard SQL command. |