Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...


Can we have more than one NULL in a column having unique
constraint?

Answers were Sorted based on User's Feedback



Can we have more than one NULL in a column having unique constraint?..

Answer / kalu

No, because Unique constraint accepts only one null value.

Is This Answer Correct ?    16 Yes 3 No

Can we have more than one NULL in a column having unique constraint?..

Answer / saurabh

no

Is This Answer Correct ?    11 Yes 5 No

Can we have more than one NULL in a column having unique constraint?..

Answer / p.prabhu

No we cant have More than One Null in a column which is
having Unique Key Constraint. Because Unique Key Constraint
means having a value only once in the column.

Is This Answer Correct ?    4 Yes 1 No

Can we have more than one NULL in a column having unique constraint?..

Answer / santhoshkumar.k

No we can not have that option in sql server

Is This Answer Correct ?    4 Yes 2 No

Can we have more than one NULL in a column having unique constraint?..

Answer / krishnaraj p n

UNIQUE constraints can accept NULL just once. If the
constraint is defined in a combination of fields, then
every field can accept NULL and can have some values on
them, as long as the combination values is unique.

Is This Answer Correct ?    2 Yes 0 No

Can we have more than one NULL in a column having unique constraint?..

Answer / manoj pandey

No this is not possible... columns with Unique constraint
can only contain 1 null value/row.

@Manish... could you please try this:

create table #tempTable (id int, name varchar(50) unique)

insert into #tempTable
select 1, 'manoj' union
select 2, null union
select 3, null union
select 4, 'pandey'

Is This Answer Correct ?    1 Yes 0 No

Can we have more than one NULL in a column having unique constraint?..

Answer / maneesh

Yes there can be any number of NULLs.
Remember NULL <> NULL.

So uniqueness will still be there.

Just try it out.

Maneesh

Is This Answer Correct ?    6 Yes 6 No

Can we have more than one NULL in a column having unique constraint?..

Answer / habibur rahaman

It depends upon the database on which you are working.....in SQL we can have only one value but in oracle we can have n no of values.......i did it practically.

Is This Answer Correct ?    0 Yes 0 No

Can we have more than one NULL in a column having unique constraint?..

Answer / sasikumar

It is possible in Oracle database (NULL <> NULL) but not
possible in SQL server.

Is This Answer Correct ?    1 Yes 1 No

Can we have more than one NULL in a column having unique constraint?..

Answer / drona

UNIQUE constraints can accept NULL just once.
I have a dought?
Every null is different?

Is This Answer Correct ?    0 Yes 0 No

Post New Answer

More SQL Server Interview Questions

What is the difference between HAVING clause and the WHERE clause?

7 Answers  


What is the stuff?

0 Answers  


Mention the differences between sql server and mysql.

0 Answers  


What xml support does the sql server extend?

0 Answers  


What is the difference between windows authentication and sql server authentication

7 Answers   HCL,


what is the difference in login security modes between v6.5 and 7.0? : Sql server database administration

0 Answers  


What are the type of joins? When do we use Outer and Self joins?

3 Answers  


Why does sql studio use a single registered database repository? : sql server management studio

0 Answers  


how many non clustered index in sql server 2008,2010,2012

2 Answers   Accenture,


Can we use having clause without group by?

0 Answers  


Hi Can any one tell me the Good institute to learn SQL esp for Data Base Testing or SQL from scratch to the proficiency level in Hyederabad and facult also. Thankyou well in advance

6 Answers  


How to check if a table is being used in sql server?

0 Answers  


Categories