Q. What is abc in the following SQL statement?
DELETE FROM xyz WHERE abc = 5;
DELETE FROM xyz WHERE abc = 5;
β
Correct Answer: (A)
column name
Explanation: This SQL statement is used to delete rows from a table. Let's break it down: