Hi...I had a question regarding sequence utilization in query. I have an access database where i add a new field which is AltId where i want the field to filled with numeric values that start from 1. Its some sort like auto increment but i wan it run by query.how can i do so?
I plan do do with sequence syntax...but i dont know how to use it efficiently
i do like below.
Create SEQUENCE sequencename1 START WITH 1 INCREMENT BY 1 then
ALTER TABLE Alternator ALTER AltID RESTART WITH 1
but i got error....How plsssssssssss help me......Urgent. ..Thanks in advance
I plan do do with sequence syntax...but i dont know how to use it efficiently
i do like below.
Create SEQUENCE sequencename1 START WITH 1 INCREMENT BY 1 then
ALTER TABLE Alternator ALTER AltID RESTART WITH 1
but i got error....How plsssssssssss help me......Urgent. ..Thanks in advance
Comment