UPDATE Command

 

UPDATE Command

Description:
The UPDATE command is used to modify existing records in a table.

Syntax:

UPDATE table_name
SET column=value
WHERE condition;

Example:

UPDATE student
SET name='Rahman'
WHERE id=1;



Comments

Popular posts from this blog

Important MySQL Commands