Answers for "sql set new identity column"

SQL
-1

pl sql create table identity column

Copy
sql-> CREATE Table sg_atts (
id INTEGER GENERATED ALWAYS AS IDENTITY
(START WITH 2 
INCREMENT BY 2 
MAXVALUE 200 
NO CYCLE),
name STRING,
PRIMARY KEY (id));
Statement completed successfully
sql->
Posted by: Guest on June-24-2020
0

insert into table with only identity column

INSERT INTO TABLE_NAME DEFAULT VALUES
Posted by: Guest on April-01-2020

Code answers related to "SQL"

Browse Popular Code Answers by Language