同时查询两个无关联表里内容的sql语句

  • Post author:
  • Post category:其他


SELECT count(1) FROM integral WHERE topic_id="123"
UNION all
SELECT topic_name FROM topic_list  WHERE id="345"

如上方法查询出来的内容都会在一列当中,有的时候不符合要求,可以进行列转行

select (select count(1) from integral a where topic_id="123")count,
(select topic_name from topic_list where id = "345" ) topic_name

效果如下:



版权声明:本文为aaaPostcard原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接和本声明。