DCL英文全称是Data Control Language(数据控制语言),用来管理数据库用户、控制数据库的访 问权限。
其中 Host代表当前用户访问的主机, 如果为localhost, 仅代表只能够在当前本机访问,是不可以 远程访问的。
User代表的是访问该数据库的用户名。在MySQL中需要通过Host和User来唯一标识一 个用户。
create user 'itcast'@'localhost' identified by '123456';
alter user 'heima'@'%' identified with mysql_native_password by '1234';
标签:DCL,数据库,用户,访问,Host,User,SQL From: https://www.cnblogs.com/wekenyblog/p/17367749.html