How to insert IDENTITY column when creating table by this method (creating IDENTITY in table level)?
Create Table ProspectiveTenant
(
PTID int,
Name varchar (25),
Email varchar (25),
ApplicationFillDateTime Date,
MetSamanthaDateTime Date
Add (PTID) Identity (1,1)--this is not working