摘要:
1:笛卡乐积 展示的内容以第一个表为主(不变),第二个表的数据每行重复展示 select * from employee_tbl,user 想要展示公共字段必须加表名 select user.name,date,address,chinese from employee_tbl,user where 阅读全文
摘要:
--字段去重--distinct select distinct sname from student --排序--order by(ASC升序[默认] DESC降序)select distinct sage from student order by sage asc(先降序在去重) select 阅读全文