大家好,想请教一条sql语句。
我有四个表:前三个分别为活动表(activity),博客表(blog)和课程表(course),表结构基本一样,都是发表内容的,有title和content字段,第四个表为动态表(dynamic),当用户参加活动,发表博客和学习课程的时候,都会在动态表中进行记录。
动态表中有type字段表示此条记录是用户什么行为(活动,博客,课程),itemid字段表示此条记录的行为在他们自己表中的id,如type=1,itemid=2就表示活动表中id为2的记录在动态表中留下的记录,
现在我要显示用户动态列表,根据type字段去取不同表中的title和content字段 ,用case when不太会用,想讨教一下:
我是这么写的:
`select d.id,d.uid,d.createtime,
case
when d.type==1 then //活动
select a.title,a.content from activity a where a.id=d.itemid
when d.type==2 then //博客
select b.title,b.content from blog b where b.id=d.itemid;
where d.type=3 then //课程
select c.title,c.content from course c where c.id=d.itemid
from dynamic d `
谢谢大家 !
这样也可以:
`select d.id,d.uid,d.createtime,
case
when d.type==1 then //活动
a.title,a.content
when d.type==2 then //博客
b.title,b.content
where d.type=3 then //课程
c.title,c.content
end
from dynamic d
left join activity a
on a.id=d.itemid
left join blog b
on b.id=d.itemid
left join course c
on c.id=d.itemid`
版权声明:本文内容由阿里云实名注册用户自发贡献,版权归原作者所有,阿里云开发者社区不拥有其著作权,亦不承担相应法律责任。具体规则请查看《阿里云开发者社区用户服务协议》和《阿里云开发者社区知识产权保护指引》。如果您发现本社区中有涉嫌抄袭的内容,填写侵权投诉表单进行举报,一经查实,本社区将立刻删除涉嫌侵权内容。