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.

17 line
317B

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