ct38 发表于 2018-10-21 14:10:49

SQL DCL 语句

  授权与收回权限:

  mysql> grant select,insert on test.* to "user1"@"localhost">  mysql> revoke insert on test.* from"user1"@"localhost";
  帮助的使用:
  按照层次查看帮助:
  mysql> ? contents
  mysql> ?Data Types
  mysql> ? INT
  快速查阅帮助:
  mysql> ? show
  mysql> ? create
  mysql> ? create TABLE

页: [1]
查看完整版本: SQL DCL 语句