You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

10 line
165B

  1. create database db;
  2. CREATE TABLE `db`.`users` (
  3. `userid` INT NOT NULL,
  4. `username` VARCHAR(45) NULL,
  5. `password` VARCHAR(45) NULL,
  6. PRIMARY KEY (`userid`));