Skip to content
This repository was archived by the owner on May 11, 2020. It is now read-only.
This repository was archived by the owner on May 11, 2020. It is now read-only.

Auto-incrementing columns #9

@nukep

Description

@nukep

The goal is to be able to run:

CREATE TABLE mytable (
  id U32 INC,
  name VARCHAR
);

INSERT INTO mytable (name) VALUES ('Alex'), ('Bob'), ('Caroline');

SELECT * FROM mytable;
/*
-----------------
| id | name     |
-----------------
| 0  | Alex     |
| 1  | Bob      |
| 2  | Caroline |
-----------------
*/

Aliases for INC: AUTOINCREMENT

Metadata

Metadata

Assignees

No one assigned

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions