What is the difference between Primary key and
unique index?

Answer Posted / raghunathan

We can have only one Primary Key for a table(including multiple column) but can have any number of unique indexes in a table( limited to number of columns in that table)

Is This Answer Correct ?    1 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

How to test SQL -911 error while developing COB-DB2 program

6720


What is cloudant database?

643


Can we insert update delete in view?

579


Explain in detail about buffer manager and its functionalities?

564


Is db2 a mainframe?

589






Explain the contents that are a part of dclgen.

661


Is it possible to create an Instance in DB2 using DB2 Control Center ?

631


Define data page.

634


How can you find out the # of rows updated after an update statement?

641


What db2 400?

679


Why do we use cursor?

599


Is it possible to alter a table – for example adding a column, when another user is accessing or updating some columns?

630


How to fetch the last row from the table in SQL (db2)?

1041


What is a plan and package in db2?

625


SET is the ANSI standard for variable assignment, SELECT is not. SET can only assign one variable at a time, SELECT can make multiple assignments at once. If assigning from a query, SET can only assign a scalar value. If the query returns multiple values/rows then SET will raise an error. SELECT will assign one of the values to the variable and hide the fact that multiple values were returned (so you'd likely never know why something was going wrong elsewhere - have fun troubleshooting that one) When assigning from a query if there is no value returned then SET will assign NULL, where SELECT will not make the assignment at all (so the variable will not be changed from it's previous value) As far as speed differences - there are no direct differences between SET and SELECT. However SELECT's ability to make multiple assignments in one shot does give it a slight speed advantage over SET.

2155