mysql怎么查俩张表 mysql查询两张表语句
mysql 怎么查询两个表的内容
查所有内容:select a.*,b.* from 表名1 a,表名2 b where a.id = b.id;
专注于为中小企业提供成都网站设计、成都做网站服务,电脑端+手机端+微信端的三站合一,更高效的管理,为中小企业万载免费做网站提供优质的服务。我们立足成都,凝聚了一批互联网行业人才,有力地推动了上千家企业的稳健成长,帮助中小企业通过网站建设实现规模扩充和转变。
查指定内容:select a.要查的字段1,a.要查的字段2 from 表名1 a,表名2 b where a.id = b.id;
注意:a表跟b表 id是一样的!
mysql 查询两张表
select tbl1.*,(select count(post_id) from tbl2 where post_id = tbl1.id) as comment_count from tbl1
或者
select tbl1.*,count(post_id) as comment_count from tbl1 inner join tbl2 on tbl1.id=tbl2.post_id group by tbl1.id
mysql 同时查两个表怎么做?
建议采用联合查询 join 而且使用全连接(FULL JOIN)方式
select *
from web_pian
FULL JOIN Orders
ON web_pian.mingcheng=web_shang.mingcheng
Order by web_pian.mingcheng
解释下:FULL Join 全连接将会输出所有的记录,即使有些空缺,和Left Join 左连接有所不同
网站题目:mysql怎么查俩张表 mysql查询两张表语句
文章位置:http://pwwzsj.com/article/hiiosc.html