摘要: 用户 角色 权限 select * from students1;查询这个表里的数据 select ssex from students1;在这个表里面查询ssex(性别) select distinct from students1;在这个表里面查出来的ssex(性别)去重重复行 update s 阅读全文
posted @ 2018-08-15 14:37 麻包缝裤衩 阅读(246) 评论(0) 推荐(0)
摘要: 创建一个表:create table user( uid varchar(10) , pwd int(10) ); 学生表: create table student( sno varchar(20) not null primary key comment '学号' , sname varchar 阅读全文
posted @ 2018-08-15 14:35 麻包缝裤衩 阅读(166) 评论(0) 推荐(0)