Sunday 13 July 2014

SQL create a table with identity column

Create TABLE new_employees
(
 id_num int IDENTITY(1,1),
 fname varchar (20)
)