DELETE Command

 

DELETE Command

Description:
The DELETE command is used to remove records from a table.

Syntax:

DELETE FROM table_name
WHERE condition;

Example:

DELETE FROM student
WHERE id=1;



Comments

Popular posts from this blog

Important MySQL Commands