-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsql2s
25 lines (19 loc) · 1.07 KB
/
sql2s
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
mysql> create database vtapp;
mysql> create user 'vtapp'@'localhost';
mysql> show grants for 'vtapp'@'localhost';
+-------------------------------------------+
| Grants for vtapp@localhost |
+-------------------------------------------+
| GRANT USAGE ON *.* TO 'vtapp'@'localhost' |
+-------------------------------------------+
1 row in set (0.00 sec)
mysql> GRANT SELECT, INSERT, CREATE, ALTER, DROP ON vtapp.* TO 'vtapp_user'@'localhost';
Query OK, 0 rows affected (0.00 sec)
mysql> show grants for 'vtapp_user'@'localhost';
+------------------------------------------------------------------------------------+
| Grants for vtapp_user@localhost |
+------------------------------------------------------------------------------------+
| GRANT USAGE ON *.* TO 'vtapp_user'@'localhost' |
| GRANT SELECT, INSERT, CREATE, DROP, ALTER ON `vtapp`.* TO 'vtapp_user'@'localhost' |
+------------------------------------------------------------------------------------+
2 rows in set (0.00 sec)