File size: 360 Bytes
86d99b4
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
USE app;

CREATE TABLE users(
    user_id INT PRIMARY KEY AUTO_INCREMENT,
    username VARCHAR(255),
    password VARCHAR(255),
    
);

INSERT INTO users(username,password) VALUES('sample','sample');
INSERT INTO users(username,password) VALUES('test','test');
INSERT INTO users(username,password) VALUES('app','app');

GRANT ALL ON app.* TO test;