我有一张记录表
Table records(id, docId, title)
给定一个id,我想选择所有等于或小于id的行,它们共享相同的docId。我事先不知道docId。
以下是一些示例数据:
insert into records (id, docId, title) values
(1, 1, 'a'),
(2, 1, 'b'),
(3, 2, 'c'),
(4, 1, 'd')
我可以通过做两件事来做到这一点......
select @docId := docId from records where id = 4;
select id, title from records where docId = @docId and id <= 4;
...导致......
[{ id: 4, title: 'd'},{id: 2, title: 'b'},{id: 1, title: 'a'}]
我想知道:是否可以在一个查询中执行此操作?
答案 0 :(得分:0)
我不知道我是否理解了您的问题,但如果您只需要使用一个查询来搜索记录,则可能是该子选择可以帮助您...
select r.id, r.title
from records r
where r.docId in (
select r2.docId
from records r2
where r2.id = 4
)
and r.id <= 4
我希望我能帮到你。最好的威力。
答案 1 :(得分:0)
您可以加入两个查询:
SELECT id, title
FROM records a
JOIN records b ON a.docId = b.docId AND a.id < b.id
WHERE b.id = 4;