摘要:
4.DDL: create,dropDML : insert update delete selectDCL: grant a.DDL 数据定义语言 create drop alterb.DML 数据操作语言 select insert update deleteb.DCL 数据控制语言 grant 阅读全文
摘要:
1.创建一个新的DB和用户ruozecreate database ruozedata;grant all privileges on ruozedata.* to ruoze@'%' identified by '123456'; *.* 用户@'%' 用户@'127.0.0.1' 密码% MyS 阅读全文