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')
Answers were Sorted based on User's Feedback
How can you view the errors encountered in a trigger?
what are the type of locks ? : Sql dba
What is bulk collections?
What are the limitations of sql express?
What is the difference between pl and sql?
Can we use having without group by in sql?
What is the difference among union, minus and intersect?
how many tables will create when we create table, what are they? : Sql dba
What is a dirty read sql?
Can we use commit or rollback in trigger? If yes, then how. Please explain with a suitable example?
Which one is the Best approach to put code, among Triggers and Procedures? Explain?
Can we debug stored procedure?