会员
周边
捐助
新闻
博问
闪存
赞助商
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
简洁模式
...
退出登录
注册
登录
光辉飞翔
导航
博客园
首页
新随笔
联系
订阅
管理
公告
sql语句,查找合并后的结果
tom,10,null,20 这是第一条记录 第二条记录是 tom,null,20,null; 2条记录要合并成 tom,10,20,20
select name, id, max(case a when '' then a else a end) a, max(case b when '' then b else b end) b, max(case c when '' then c else c end) c from tb group by name,id;
posted on
2012-07-06 11:23
光辉飞翔
阅读(
243
) 评论(
0
)
编辑
收藏
举报
刷新页面
返回顶部