I want to insert records into a table. On one of the columns I need to increment the column by one.
insert into partner(
cus_no,
cus_name,
TP_id
)
select
cus_no,
cusname,
123001+1????,
from acecustomer
Data would look like:
ABC customer1 1230001
DEF Customer2 1230002
GHI Customer3 1230003
I need the TPID to start at a specific value.