sql delete Flashcards
1
Q
How do you delete rows from a database table?
A
DELETE FROM “table”
WHERE “column” = ‘value’
2
Q
How do you accidentally delete all rows from a table?
A
DELETE FROM “table”
How do you delete rows from a database table?
DELETE FROM “table”
WHERE “column” = ‘value’
How do you accidentally delete all rows from a table?
DELETE FROM “table”