Hi!
I'm using Microsoft SQL Server Management Studio to design a table with two fields:
id (int)
file (text)
I set 'id' to be primary. I try to add a row to this table but it asks me for a custom value for 'id'. I want it simply to auto-assign a uniqe value for it. How to do this please?
In the table designer, set the Identity Specification to Is_Identity = Yes.
Also, I recommend NOT using [ID] as the column name. A good standard is to use the TableName and ID, so a table named MyTable would have it's IDENTITY column named MyTableID.
No comments:
Post a Comment