gpt4 book ai didi

mysql - 从3个表中获取id

转载 作者:行者123 更新时间:2023-11-29 14:26:14 24 4
gpt4 key购买 nike

一个团队表,其中包含团队 ID 和团队名称,另外 2 个表包含测验数据,另一个表包含调查问卷数据。

我需要获取已完成测验(因此有一些测验数据)和调查问卷(因此有一些调查问卷数据)的团队 ID 列表,但我不知道如何连接这 3 个表来获取我需要的 ID 列表。

收到的任何指示

最佳答案

正如您在上面的评论中所说..

I actually want team IDs that are in either of the data tables. How would that amend the query? – Dave

试试这个,这就是我对你的话的理解..

select teamID,teamName from team where teamID in (select teamID from quiz) or teamID in (select teamID from questionnaire);

关于mysql - 从3个表中获取id,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10912588/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com