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
What is difference between stored procedure and trigger?
What is a call statement? Explain with an example.
How many times can we commit in a loop?
How is sql used in oracle?
Enlist the data types that can be used in pl/sql?
Can a varchar be a primary key?
what are different types of keys in sql?
what is a relationship and what are they? : Sql dba
What port does sql server use?
Can we use commit inside a trigger?
what is the difference between group by and order by in sql? : Sql dba
What is sql performance tuning?
What is minus?
Which normal form is best?
what is a trigger in mysql? Define different types of trigger. : Sql dba