SQL example creating table with auto-increment.
Code Block | ||
---|---|---|
| ||
Create Table USER(
id BIGINT NOT NULL auto_increment,
name VARCHAR(255) NOT NULL, Primary key (id)
); |
SQL example creating table with auto-increment.
Code Block | ||
---|---|---|
| ||
Create Table USER(
id BIGINT NOT NULL auto_increment,
name VARCHAR(255) NOT NULL, Primary key (id)
); |