In an access db.
I wish to create a database table in access. I whish the pk:Expence_ID
to be autonumbered. How do I do that in sql code in access?
I wish to create a database table in access. I whish the pk:Expence_ID
to be autonumbered. How do I do that in sql code in access?
Code:
create table testing5(Expence_ID number,Expencetype Text not null, To text, Dato Date not null, Commenttext(30), Amount currency not null, constraint pk1 primary key(Expence_ID));