Advertisement
sriyanto

sql_simple_lte

Oct 12th, 2022
928
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
MySQL 0.32 KB | None | 0 0
  1. CREATE DATABASE IF NOT EXISTS `YOUR_DATABASE` DEFAULT CHARACTER SET utf8 COLLATE utf8_general_ci;
  2. USE `YOUR_DATABASE`;
  3. CREATE TABLE IF NOT EXISTS `tb_users`
  4. (
  5.     id int NOT NULL AUTO_INCREMENT,
  6.     username VARCHAR(255),
  7.     email VARCHAR(255),
  8.     password VARCHAR(255),
  9.     level VARCHAR(255),
  10.     PRIMARY KEY(id)
  11. );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement