gpt4 book ai didi

MySQL查询两个表

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

是否可以获取名称=“A”且状态=1的所有项目?名称在表项中,状态在表状态中。

类似 SELECT * FROM items WHERE name = "A"AND id AS status.itemid = 1 但这不起作用。

数据库结构:

表项:

id      name
1 A
2 A
3 B

表状态:

itemid      status
1 1
2 1
3 2

最佳答案

使用内连接

select a.name, b.status 
from items as a
inner join status as b on a.id = b.itemid
where a.name ='A' and b.status =1;

关于MySQL查询两个表,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38426056/

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