21、创建重复表
Create table two select * from one;
22、查询表one中的所有记录
Select *from one;
23、统计表one中的id
Selecte count(id) from one;
24、按分数来分组
Select *from one group by score;
25、多表联合查询,用户表one有id,username,password,face,createtime,createiP
Tiezi表有tid,title,content,posttime,uid
对表起别名
Select o.id as oid,t.uid as tuid from one as o,tiezi as t where o.id=t.uid/oid=tuid;
msp在Join的左边,所有称为左表。party在Join的右边,所有称为右表。
现在再看看这句话,“包含所有的左边表中的记录甚至是右边表中没有和它匹配的记录”,意思应该很明白了吧。执行下面这个语句,那两个没有政党的议员就漏不了了。
SELECT ,
FROM msp LEFT JOIN party ON party=code