create temporary tables(注意这里是tables,不是table) 必须有create temporary tables的权限,才可以使用create temporary tables. mysql> grant create temporary tables on pyt.* to ‘p1′@’localhost’; [mysql@mydev ~]$ mysql -h localhost -u p1 -p pyt mysql> create temporary table tt1(id int); ...
5. create temporary tables(注意这里是tables,不是table) 必须有create temporary tables的权限,才可以使用create temporary tables. mysql> grant create temporary tables on pyt.* to ‘p1′@’localhost’; [mysql@mydev ~]$ mysql -h localhost -u p1 -p pyt mysql> create temporary table tt1(id int...
5. create temporary tables(注意这里是tables,不是table) 必须有create temporary tables的权限,才可以使用create temporary tables. mysql> grant create temporary tables on pyt.*to ‘p1′@’localhost’; [mysql@mydev ~]$ mysql-h localhost -u p1 -p pyt mysql> create temporary table tt1(id int);...
mysql> grant create temporary tables on testdb.* to developer@'192.168.0.%'; 4、grant 操作 MySQL 索引权限。 mysql> grant index on testdb.* to developer@'192.168.0.%'; 5、grant 操作 MySQL 视图、查看视图源代码 权限。 mysql> grant create view on testdb.* to developer@'192.168.0.%';...
● Create tablespace ● Usage ● Grant option 2、数据库级别权限 授权范围可以是某数据库或某数据库中的所有对象,也可以是所有数据库(可以使用*.*代表全局对象;也可以使用db.*代表某库下的所有对象)。 ● Create ● Create routine ● Create temporary tables ...
grant create temporary tables on testdb.* to developer@'192.168.0.%'; grant 操作 MySQL 索引权限。 grant index on testdb.* to developer@'192.168.0.%'; grant 操作 MySQL 视图、查看视图源代码 权限。 grant create view on testdb.* to developer@'192.168.0.%';grant show view on testdb.*...
GRANTSELECT,INSERT,UPDATEONsales.ordersTO'user2'@'localhost'; 复制代码 2. 使用明确的权限名称 原则:使用明确的权限名称,避免使用模糊的权限。 案例: 使用SELECT代替SHOW VIEW,因为SELECT权限更具体。 使用CREATE TEMPORARY TABLES代替CREATE,因为临时表权限更明确。
grant create temporary tables on testdb.* to developer@'192.168.0.%'; grant 操作 MySQL 索引权限。 grant index on testdb.* to developer@'192.168.0.%'; grant 操作 MySQL 视图、查看视图源代码 权限。 grant create view on testdb.* to developer@'192.168.0.%'; ...
第一列表示可以在grant命令中制定的权限第二列对应着几张权限表(user,db,tables_priv, columns_priv, procs_priv)中的列第三列表示权限的作用范围,其中Global(Server administration)对应 mysql.user 表,Database 对应 mysql.db 表,Tables 对应 mysql.tables_priv 表,Columns 对应 mysql.columns_priv 表,Stored ...
mysql> grant create temporary tables on pyt.* to ‘p1′@’localhost’; [mysql@mydev ~]$ mysql -h localhost -u p1 -p pyt mysql> create temporary table tt1(id int); 6. create view 必须有create view的权限,才可以使用create view