Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

SQL example creating table with auto-increment.

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