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...
grant create temporary tables on pyt.* to 'p1'@'localhost'; -- 注意权限中是tables -- 'p1'@'localhost' 登录 create temporary table tt1(id int); -- 建临时表时是table 1. 2. 3. 6. create view 必须有create view的权限,才可以使用create view mysql> grant create view on pyt.* to p1@...
grant 操作 MySQL 临时表权限。 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 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.* ...
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 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...
create routine create_routine_priv 创建存储过程或存储函数execute routine execute_priv 执行存储过程或存储函数file file_priv 加载服务器主机上的文件create temporary tables create_tmp_table_priv 创建临时表lock tables lock_tables_priv 锁定表create user create_user_priv 创建用户process process_priv 服务器...
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 ...
GRANT { { SELECT | INSERT | UPDATE | DELETE | TRUNCATE | REFERENCES | TRIGGER | ANALYZE | ANALYSE | VACUUM | ALTER | DROP } [, ...] | ALL [ PRIVILEGES ] } ON { [ TABLE ] table_name [, ...] | ALL TABLES IN SCHEMA schema_name [, ...] } TO { [ GROUP ] role_name |...
grantdropontestdb.*todeveloper@’192.168.0.%’; grant操作MySQL外键权限。 grantreferencesontestdb.*todeveloper@’192.168.0.%’; grant操作MySQL临时表权限。 grantcreatetemporarytablesontestdb.*todeveloper@’192.168.0.%’; grant操作MySQL索引权限。 grantindexontestdb.*todeveloper@’192.168.0.%...