需要合并两条select的查询结果,应该如何写SQL语句?

有两条SQL语句,我想把它合并成从左到右排列的格式,不是用union上下合并,是想把两列左右排列,求大神赐教。
select count(*) from a
select bytes from b where xxx = yyy

select bytes,(select count(*) from a) from b where xxx = yyy
温馨提示:答案为网友推荐,仅供参考
相似回答