Skip to content

Instantly share code, notes, and snippets.

@dikiwidia
Last active May 1, 2026 08:05
Show Gist options
  • Select an option

  • Save dikiwidia/a717afdae1661a9c340e8617d5cd571c to your computer and use it in GitHub Desktop.

Select an option

Save dikiwidia/a717afdae1661a9c340e8617d5cd571c to your computer and use it in GitHub Desktop.
Example SQL
-- CREATE NEW TABLE
CREATE TABLE users (
id INT PRIMARY KEY AUTO_INCREMENT,
email VARCHAR(50) NOT NULL,
password VARCHAR(100) NOT NULL,
name VARCHAR(100) NOT NULL
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment