DELETE FROM
Definition:
Delete records from table.
Command Syntax:
DELETE FROM table_name
[WHERE criteria];
- delete records from the table table_name
- WHERE criteria refers to WHERE - SQL statement
'Do not forget the FROM.'By secondary 6 student
DELETE FROM table_name
[WHERE criteria];
Comments
Post a Comment