Last active
May 1, 2026 08:05
-
-
Save dikiwidia/a717afdae1661a9c340e8617d5cd571c to your computer and use it in GitHub Desktop.
Example SQL
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| -- 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