gpt4 book ai didi

MYSQL 嵌套查询有两个选择

转载 作者:行者123 更新时间:2023-11-29 11:28:42 25 4
gpt4 key购买 nike

我有:

Table1 (UserID -City - Adress - Mobile)
Table2 (DeviceID - UserID - Vendor - Model).

我想执行嵌套查询以在一行中选择以下内容:

 select DeviceID, UserID, Model From Table2 Where Vendor=Sony 
(and for this row go and select City - Address - Mobile from table 1 where table1.UserID = Table2.UserID)

如何执行同一查询中的第二个选择以在模型之后的同一行中打印。

最佳答案

使用内部 JOIN

select 
t2.DeviceID
, t2.UserID
, t2.Model
, t1.city
, t1.Address
, ti.mobile
From Table2 as t2
Where Vendor='Sony'
INNER JOIN table1 as t1 on t1.UserID = t2.UserID

关于MYSQL 嵌套查询有两个选择,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37774208/

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