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;
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
Post a Comment