This question asked in CBSE SQP-2020
Which command is used to modify the records of the table?
Answer:
The UPDATE command is used to modify the records of a table.
Syntax:
UPDATE
table_name
SET
column1
=
value1
,
column2
=
value2
, ...
WHERE
condition
;
Example: