robert030975
MIS
- Oct 17, 2006
- 227
what is the syntax for adding a uid on a table eg
ALTER TABLE #test
ADD uid int
this puts nulls but against uid but I want to seed it so uid code1
1 A
2 B
3 C
Thanks
ALTER TABLE #test
ADD uid int
this puts nulls but against uid but I want to seed it so uid code1
1 A
2 B
3 C
Thanks