Test your skills through the online practice test: SQL Quiz Online Practice Test

Related differences

Ques 46. Minus

Minus is the product of two tables listing only the non-matching rows.

Is it helpful? Add Comment View Comments
 

Ques 47. Correlated Subquery

Correlated Subquery is a subquery that is evaluated once for each row processed by the parent statement. Parent statement can be Select, Update or Delete. Use CRSQ to answer multipart questions whose answer depends on the value in each row processed by parent statement.

Is it helpful? Add Comment View Comments
 

Ques 48. Multiple columns

Multiple columns can be returned from a Nested Subquery.

Is it helpful? Add Comment View Comments
 

Ques 49. Sequences

Sequences are used for generating sequence numbers without any overhead of locking. Drawback is that after generating a sequence number if the transaction is rolled back, then that sequence number is lost.

Is it helpful? Add Comment View Comments
 

Ques 50. Synonyms

Synonyms is the alias name for table, views, sequences & procedures and are created for reasons of Security and Convenience.
Two levels are Public - created by DBA & accessible to all the users. Private - Accessible to creator only. Advantages are referencing without specifying the owner and Flexibility to customize a more meaningful naming convention.

Is it helpful? Add Comment View Comments
 

Most helpful rated by users: