|
|
|
Forum Newbie
      
Group: General Forum Members
Last Login: Tuesday, October 21, 2008 10:53 AM
Points: 2,
Visits: 2
|
|
HELLO MY NAME IS GEORGE BEGINNER IN SQL
MY QUESTION IS THAT ,I WANT TO CREATE A TABLE WITH ONE FIELD WHICH HAS TO INSERT ONLY THREE VALUES AFTER THAT FIELD INSERT THRE VALUES IT SHOULD NOT BE ABLE TO INSERT MORE VALUES IN DETAIL IF MY TABLE NAME IS 'SOURCE' WHICH CONTAIN ONLY ONE FIELD, NAMED 'CATEGORY'OF TYPE VARCHAR I ONLY WANT TO ENTER THREE VALUES IN THIS AS 'LAND','AIR','WATER' I SHOULD BE ABLE TO INSERT ONLY THIS VALUES AND TEHRE SHOULD BE NO DUPLICATION OF THESE VALUES AND NO OTHER VALUES SHOULD BE INSERTED IS IT POSSIBLE USING CHECK CONSTRAINT . IF NOT USING STORED PROCEDURES
I AM EXPECTING AN EARLY REPLY
|
|
|
|
|
SSChampion
        
Group: General Forum Members
Last Login: Today @ 10:38 AM
Points: 11,610,
Visits: 27,659
|
|
this sounds very much like a homework assignment.... aside from that... you want to do a few things....
you said only three specific values.... as you suspected, read about CHECK CONTRAINTS in you books online. you might also want to make the column NOT NULL when you build the table, so it cannot be blasnk either.
to force a column to be unique, you'll want to read about UNIQUE CONSTRAINTS in books online as well. the combination of those three should get you where you want to go.
show us what you've built so far and we could offer some more insight.
Lowell
--There is no spoon, and there's no default ORDER BY in sql server either. Actually, Common Sense is so rare, it should be considered a Superpower. --my son
|
|
|
|
|
SSC-Dedicated
           
Group: General Forum Members
Last Login: Today @ 10:51 AM
Points: 37,663,
Visits: 29,916
|
|
And please don't post in all caps. It's the online equivalent of shouting at someone. It's also hard to read.
Gail Shaw Microsoft Certified Master: SQL Server 2008, MVP SQL In The Wild: Discussions on DB performance with occasional diversions into recoverability
We walk in the dark places no others will enter We stand on the bridge and no one may pass
|
|
|
|