12345678910111213141516171819202122232425 |
- --集团成本外部表数据源更新
- --jt_chengben_202203_202204141616
- --jt_chengben_202204_202205060050
- --jt_chengben_202205_202206081941
- --jt_chengben_202206_202207070050
- --jt_chengben_202207_202208090650
- --alter foreign table sqmdb_cost.jituanchengben_e options(set filename '/data/esbftp/dopdata/nlptdata/jt_chengben_202207_202208090650');
- select distinct report_id,"period",period_type,smonth from sqmdb_cost.jituanchengben_e
- select distinct report_id,"period",smonth,count(*) from sqmdb_cost.report50010 group by report_id,"period",smonth
- select t.report_id,t.period,count(*)
- from sqmdb_cost.jituanchengben_e t
- where t.period like '2022-07%'
- group by t.report_id,t.period;
- select report_id,"period",period_type,entity_name_disp,column_tag,amount,smonth
- from sqmdb_cost.jituanchengben_e
- where entity_name_disp like '%石家庄%' and column_tag='COLUMN1' and report_id='50'
- and ds_cn='归集+横向分摊+调差' and lgl_type_name='01合并' and sch_name in ('北方省汇总展现','分省展现')
|