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...

How can i give the restrictions for the data entry, if i
wish to enter only I ,II, III, IV in the grade actegory of
student table?

Answer Posted / mohan

create table #test (sno int check(sno in(1,2,3)))

successfull statement:
insert into #test values(3)

failure statement :

insert into #test values(4)
error message:
INSERT statement conflicted with COLUMN CHECK
constraint 'CK__#test__sno__68E599B5'. The conflict
occurred in database 'tempdb',
table '#test________________________________________________
____________________________________________________________
___00000000D7E0', column 'sno'.
The statement has been terminated.

Is This Answer Correct ?    0 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

How ssrs maintain security?

1134


How column data types are determined in a view?

1010


How to enforce security in sql server? : sql server security

1162


Define right outer join in sql server joins?

1112


What are the 2 types of classifications of constraints in the sql server?

1184


What do you understand by integration services in sql server?

1003


Explain the properties of the relational tables?

1032


What is a primary key?

1000


Mention the differences between local and global temporary tables.

1111


What is difference in performance between insert top (n) into table and using top with insert?

1123


What is table-valued sub query?

1028


What is the correct order of the logical query processing phases?

996


What are the parts of a function?

990


What is default constraint in ms sql server?

1106


How to concatenate two strings in SQL Server.

1208