我试图加入3个表格,有些是等级内的人加入,并从第3个表中获取数据。 我的出发点是,从该条表中删除第1条(156118)。 这里是工作说明和表格结构,但必须有一个办法,以正确的方式把所有这些内容结合起来?
// Get the parent task from the article
select task_parent
from article a, tasks t
where a.task_id = t.task_id
and a.article_number = 156118
// Get the task id for the Blog task
select task_id
from tasks
where task_parent = 26093
and task_name like %blog%
// Get ALL the blog record
select *
from blogs
where task_id = 26091
---------Tables------------
* article table *
id | article_number | task_id
1 | 156118 | 26089
* tasks table *
id | task_name | task_parent
26089 | article | 26093
26091 | blogs | 26093
26093 | Main Task | 26093
* blog table *
id | task_id | content
1 | 102 | blah
2 | 102 | blah
3 | 102 | blah
-------------
<><>>> 我如何获得所有博客数据,用1份SQl声明只用第_条编号?
提前感谢!