agriffin02
New Member
Does Progress have auto incrementing type fields? If not how can this be handled as to not duplicate keys in the system?
create customer
assign
customer.customerid = next-value(customersequence)
customer.customername = "Freds sportsware"
.
...
How would that syntax look if I am using table below:
TestTable
Id int
Descr varchar
insert into TestTable (Id, Descr)
values (??, 'My Test')
[LEFT]INSERT INTO pub.TestTable (Id, Descr)[/LEFT]
VALUES (pub.<TestTableSequencename>.NEXTVAL, 'Some description');