Quote:
|
Originally Posted by jpalazzi
I am used to using SQL server and access, what is the command for an autonumber is it an identity type? how do you set things like where you want it to begin?
Thanks for the help guys
|
Identity:
CREATE TABLE A (
ID INTEGER NOT NULL GENERATED BY DEFAULT AS IDENTITY ( START WITH +1 , INCREMENT BY +1 , NO CACHE )
);
See the SQL Ref for more detail, but that's the bones of it.