我知道 union 可用于从两个表中返回不相关的数据,但它返回多行并且列数必须匹配。并且有很多帖子显示了如何。
BUT
有没有办法可以从一行中的两个表中获取不相关的字段?
答案 0 :(得分:1)
你的意思是这样的
select (select country from country where country_ref =1) country,
(select user_name from users where user_ref = 1) user
列/字段可以是任何类型。