Feb 25, 2005 #1 bonosa Programmer May 19, 2004 76 US I googled but cant find it: I need to know how to create a column thats unique when I make my table. Thanks, sb
I googled but cant find it: I need to know how to create a column thats unique when I make my table. Thanks, sb
Feb 25, 2005 #2 swampBoogie Programmer Jan 6, 2003 1,660 SE Code: create table t(c1 char(12), constraint uniqueC1 unique(c1), <other columns>) Upvote 0 Downvote