shoubianxingchen

select * from (
select \'finish_order_info\' as table_name,count(1)as num from fraudorder.finish_order_info where crt_dt between to_date(\'2014-12-24:00:00:00\',\'yyyy-mm-dd,hh24:mi:ss\') and to_date(\'2014-12-25:00:00:00\') group by \'finish\' union all
select \'discard_order_info\' as table_name, count(1)as num from FRAUDORDER.discard_order_info where crt_dt between to_date(\'2014-12-24:00:00:00\',\'yyyy-mm-dd,hh24:mi:ss\') and to_date(\'2014-12-25:00:00:00\')union all
select \'raw_air_order_info\' as table_name, count(1)as num from FRAUDORDER.raw_air_order_info where crt_dt between to_date(\'2014-12-24:00:00:00\',\'yyyy-mm-dd,hh24:mi:ss\') and to_date(\'2014-12-25:00:00:00\')union all
select \'app_air_order_info\' as table_name, count(1)as num from FRAUDORDER.app_air_order_info where crt_dt between to_date(\'2014-12-24:00:00:00\',\'yyyy-mm-dd,hh24:mi:ss\') and to_date(\'2014-12-25:00:00:00\')union all
select \'unkown_order_info\' as table_name, count(1)as num from FRAUDORDER.unkown_order_info where crt_dt between to_date(\'2014-12-24:00:00:00\',\'yyyy-mm-dd,hh24:mi:ss\') and to_date(\'2014-12-25:00:00:00\')
);

分类:

技术点:

相关文章:

  • 2022-01-21
  • 2022-12-23
  • 2022-12-23
  • 2021-09-15
  • 2022-02-14
  • 2022-12-23
  • 2022-12-23
猜你喜欢
  • 2021-08-17
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-12-31
相关资源
相似解决方案