摘要:
表和数据: -- 创建部门 CREATE TABLE dept ( id int not null AUTO_INCREMENT PRIMARY KEY, name VARCHAR(10) not null COMMENT '部门名称' ) -- 添加部门数据 INSERT INTO `dept` 阅读全文
摘要:
一、用户管理 -- 创建用户 create user "用户名"@"IP地址" identified by "密码"; create user "pd"@"192.168.1.1" identified by "123456"; create user "pd"@"192.168.%" identi 阅读全文