what is the syntax of update command?
Answers were Sorted based on User's Feedback
Answer / arijitnit
update table_name set column_name=value where condition
| Is This Answer Correct ? | 10 Yes | 0 No |
Answer / shahnaz
UPDATE <TABLE_NAME> SET
COLUMN1=VALUE1,COLUMN2=VALUE2,COLUMN3=VALUE3.... WHERE
<CONDITION>
| Is This Answer Correct ? | 2 Yes | 0 No |
Answer / ajeet singh
Update <tablename>
set <columnname=values......> where <condition> ;
| Is This Answer Correct ? | 0 Yes | 0 No |
what is reindexing?
what are stored procedures?
What are the attributes that are found in a cursor?
How to load data from external tables to regular tables?
How to update values on multiple rows in oracle?
How do we represent comments in oracle?
What is a user role in oracle?
What are the uses of synonyms?
Explain about functional dependency and its relation with table design?
What is a snapshot in oracle database?
What is an anonymous block?
How to retrieve 5th highest sal from emp table?