Skip to end of metadata
Go to start of metadata

You are viewing an old version of this content. View the current version.

Compare with Current View Version History

« Previous Version 2 Next »

SQL example creating table with auto-increment.

Create Table USER(
  id BIGINT NOT NULL auto_increment,
  name VARCHAR(255) NOT NULL, Primary key (id)
);

  • No labels