Sql Delete Flashcards
1
Q
How do you delete rows from a database table?
A
delete
from “table”
where “target ID” (unique identifier)
2
Q
How do you accidentally delete all rows from a table?
A
forget the where tag
Coding > Sql Delete > Flashcards
How do you delete rows from a database table?
delete
from “table”
where “target ID” (unique identifier)
How do you accidentally delete all rows from a table?
forget the where tag