Bring your best ideas to the AI Use Case Contest! Enter to win 40 hours of expert engineering support and bring your vision to life using the powerful combination of Alteryx + AI. Learn more now, or go straight to the submission form.
Start Free Trial

Alteryx Designer Desktop Discussions

Find answers, ask questions, and share expertise about Alteryx Designer Desktop and Intelligence Suite.

Post create sql - auto increment?

Hamder83
11 - Bolide

Hi 

I'm using this snippet of code:

ALTER TABLE UB_SalesAgreements
ALTER COLUMN ID bigint NOT NULL;

ALTER TABLE UB_SalesAgreements

ADD PRIMARY KEY (ID);

 

 

 

I want to add AUTO INCREMENT
https://www.w3schools.com/sql/sql_autoincrement.asp

I tried:

ALTER COLUMN ID bigint NOT NULL AUTO INCREMENT;
AND 

 

ALTER COLUMN ID bigint NOT NULL;

ALTER COLUMN ID bigint AUTO INCREMENT; 

but it does not work?

1 REPLY 1
Hamder83
11 - Bolide

Or like this maybe?

 

 

ALTER TABLE UB_SalesAgreements
ALTER COLUMN ID IDENTITY(1,1);

Labels
Top Solution Authors