美文网首页
mysql语句建库建用户

mysql语句建库建用户

作者: Toplhyi | 来源:发表于2019-10-14 15:45 被阅读0次

创建数据库及用户:
create database tax_interview_test default character set utf8 collate utf8_general_ci;

create user 'interview'@'%' identified by 'interview123';

grant all on tax_interview_test.* to interview@'%';

grant all privileges on . to 'interview'@'localhost' identified by 'interview123' with grant option;

相关文章

网友评论

      本文标题:mysql语句建库建用户

      本文链接:https://www.haomeiwen.com/subject/nmmrmctx.html