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 / roopa
with double-pipes (SET price=0 || status = 'I')
| Is This Answer Correct ? | 1 Yes | 9 No |
Post New Answer View All Answers
Why is pl sql needed?
What is a null value?
What is %rowtype in pl sql?
What is cascade in sql?
how to create a new view in mysql? : Sql dba
what is the difference between ereg_replace() and eregi_replace()? : Sql dba
How do I remove sql developer from windows 10?
What is an index in sql with example?
Can we use pl sql in mysql?
What are secondary keys?
Can a table have no primary key?
What do you think about pl/sql?
What is bulk compiling in pl/sql.?
Why commit is not used in triggers?
what are string data types? : Sql dba