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.

14 line
289B

  1. CREATE TABLE `db`.`users` (
  2. `userid` INT NOT NULL,
  3. `username` VARCHAR(45) NULL,
  4. `password` VARCHAR(45) NULL,
  5. PRIMARY KEY (`userid`));
  6. insert into users values (0, "admin", "password");
  7. insert into users values (1, "bernt", "inge");
  8. GRANT ALL PRIVILEGES ON db.* TO 'root'@'%';