码迷,mamicode.com
首页 > 数据库 > 详细

sql 同一行中,不同结果在不同列显示

时间:2015-11-19 16:29:43      阅读:142      评论:0      收藏:0      [点我收藏+]

标签:

对不同条件查询到的结果在同一行中展示

 

尝试写过使用","和inner join两种方式,感觉使用","的更加直观

 

select table1.guid, table1.content name, table2.content sex, 
table3.content age

from
(
select guid, content
from table
where type=‘姓名‘
) table1
,(
select guid, content
from table
where type=‘性别‘
) table2
,(
select guid, content
from table
where type=‘年龄‘
) table3
where table1.guid = table2.guid
and table2.guid = table3.guid

sql 同一行中,不同结果在不同列显示

标签:

原文地址:http://www.cnblogs.com/fengzhentian/p/4977938.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!