How do you delete a record from a table using command Base in SQL?
Answers
Answered by
0
Answer:
please thanks for the answer
please mark as brainliest answer
Explanation:
SQL DELETE Statement
DELETE FROM table_name WHERE condition;
Example. DELETE FROM Customers WHERE CustomerName='Alfreds Futterkiste';
DELETE FROM table_name;
Example. DELETE FROM Customers;
Similar questions