开发者

I have 2 MySql tables. How to get not all data from them in 1 sql query?

开发者 https://www.devze.com 2022-12-29 19:19 出处:网络
I have 2 MySql tables. users with id\'s and username\'s ; streams with userId\'s and streamId\'sHow to get them as开发者_StackOverflow / join them into one table containing only

I have 2 MySql tables. users with id's and username's ; streams with userId's and streamId's How to get them as开发者_StackOverflow / join them into one table containing only username | streamId as SQL response? With one SQL query.


you can do the following:

select a.username, b.streamId
from names a, streams b
where a.userId = b.userId;


select tb1.username, tb2.streamid 
from tb1
inner join tb2 on tb2.userid = tb1.userid

The response above returns the same results, just contains an implicit join which my be slower.


select u.username, max(s.streamId) as streamId
from users u
inner join streams s on u.id = s.userId
group by u.username
0

精彩评论

暂无评论...
验证码 换一张
取 消

关注公众号