what is the difference between unique and primary key
Answer Posted / ravi kanth
Primary key is the combination of unique and not null.But
unique key accepts null values also.
| Is This Answer Correct ? | 6 Yes | 1 No |
Post New Answer View All Answers
Is access a database?
What are reports in a database?
How a Store Procedure called with a cursor out parameter.?
What is blob database?
What is the meaning of flat file database?
What is a database in layman terms?
What are the features of database language?
What is the advantage of the database management approach
What is tuple with example?
What is normalisation and its type?
Enlist ways to efficiently code transactions.
What is netlib for clipper?
How view is related to data independence?
Define phantom deadlock.
IF Statements BLOCK 1 . IF a >= b THEN do_this …..; ELSE do_that….; END IF BLOCK 2 . IF a < b THEN do_that …..; ELSE do_this….; END IF; • Given any pair of non-NULL values for “a” and”b”, will Block 1 and Block 2 do the same thing? • What if either “a” or”b” (or both) is NULL?