What is the main different between Null and NOT Null.
Difference between Primary and Unique Key.
How to Check the database from which application is it
possibe.

Answers were Sorted based on User's Feedback



What is the main different between Null and NOT Null. Difference between Primary and Unique Key. H..

Answer / kalpana

Primary key can never be NULL.it is used to uniquely
identify the row in a table.The database engine requeir a
value to relocate the record.so Primary key can never be
NUL.unique key may be NULL.

Is This Answer Correct ?    21 Yes 0 No

What is the main different between Null and NOT Null. Difference between Primary and Unique Key. H..

Answer / sunil kumar

Hello Nivedita,
I am not satisfied with ur answer the difference between
primary key and foreign key.I think the answer is reverse.

Is This Answer Correct ?    15 Yes 1 No

What is the main different between Null and NOT Null. Difference between Primary and Unique Key. H..

Answer / bharanikumar

primary key does not allow null value,
but unique allow only one null value...


www.happylife.in

Is This Answer Correct ?    6 Yes 0 No

What is the main different between Null and NOT Null. Difference between Primary and Unique Key. H..

Answer / amit kumar tiwari

primary key uniquely define each table and never allow NULL
value. But unique key may be NULL value.

Is This Answer Correct ?    2 Yes 1 No

What is the main different between Null and NOT Null. Difference between Primary and Unique Key. H..

Answer / g priya

If a field is null the database engine makes the field to be 0
if not null is specified ,field must be given a value
Primary key is unique,not null,index where as Unique key has
1 null value

Is This Answer Correct ?    2 Yes 5 No

What is the main different between Null and NOT Null. Difference between Primary and Unique Key. H..

Answer / nivedita

IF NULL is specified,the feild is allow to be left empty
without any value.
IF NOT NULL is specified,the field must be given a value. In
the absence of either a NULL or NOT NULL, NULL is assumed.

-------
Unique key can't be NULL.Primary key can be NULL.
Unique key always contain unique value,duplicate are not
allowed(genrally the system genrated key).Primary key maybe
repeated.

Is This Answer Correct ?    6 Yes 35 No

Post New Answer

More MySQL Interview Questions

What is 'mysqld'?

0 Answers  


What is triggers?

0 Answers  


Consider a scenario where you have two to three tables with thousand tuples in each of them. Now, if you have to perform a join operation between them will you choose to perform filtering of rows or transforming of rows first.

0 Answers  


What is data in mysql?

0 Answers  


How to extract a unit value from a date and time?

0 Answers  






How can you change the password of a mysql user?

0 Answers  


What are the 5 r's of managing behaviors?

0 Answers  


What is insert query in mysql?

0 Answers  


If you wish to encrypt the username and password using php, how will you do that?

0 Answers  


Which one of the following is the correct way to select all columns and all rows from "vtable"? Choice 1 SELECT FROM vtable SELF JOIN vtable Choice 2 SELECT ALL COLUMNS FROM vtable WHERE ALL ROWS = * Choice 3 SELECT EVERYTHING FROM vtable Choice 4 SELECT vtable.* WHERE vtable = vtable Choice 5 SELECT * FROM vtable WHERE 1 = 1

3 Answers  


What is foreign key in mysql?

0 Answers  


How do you know the version of your mysql server?

0 Answers  


Categories