Computer Science, asked by rajeshwaritke, 11 months ago

Write the general syntax of update statement in Database.​

Answers

Answered by pritamghosh11
1

UPDATE Statement is the general syntax of update statement in DataBase

Answered by flyingsonu7367
1

Answer:

1. Update table_name set column_name = null where condition;

2. Update table_name set column_name = value, column_name = value, . . . where  condition;

Explanation:

update command is used to modify the records

Similar questions