SimpleSql

作者: yxuiang | 来源:发表于2018-07-04 16:49 被阅读0次
select t1.c1,t2.c2 from (
    (select  IFNULL(SUM(total_price),0) c1
     from database1.table1 where order_status=0) t1,
    (select count(*) c2
     from database1.table1 where order_status=2) t2
)
image

相关文章

网友评论

      本文标题:SimpleSql

      本文链接:https://www.haomeiwen.com/subject/tiaeuftx.html