How are multiple column = value pairs delimited in the SET
clause of an UPDATE statement?
1. With commas (SET price = 0, status = 'I')
2. With parentheses (SET (price = 0) (status = 'I'))
3. With double-pipes (SET price = 0 || status = 'I')
4. With square-brackets (SET [price = 0] [status = 'I']
5. With single or multiple spaces (SET price = 0 status
= 'I')
Answer Posted / tulsi
1)With commas (SET price = 0, status = 'I')
| Is This Answer Correct ? | 11 Yes | 1 No |
Post New Answer View All Answers
what is self join and what is the requirement of self join? : Sql dba
Can a varchar be a primary key?
Explain the difference between 'between' & 'and' operators in sql
What is the plv (pl/vision) package offers?
What are the parameter modes supported by pl/sql?
what are the authentication modes in sql server? : Sql dba
Why having clause is used in sql?
What is denormalization in a database?
What is the command used to fetch first 5 characters of the string?
What is embedded sql with example?
what is a database? : Sql dba
How do I know if I have sql express or standard?
What is the use of prepared statement?
Why do we use sql constraints? Which constraints we can use while creating database in sql?
Is postgresql a nosql database?