select * from (select *,volume - lag(volume,1,0) over (partition by InstrumentID,tradingday order by InstrumentID asc, tradingday asc , volume asc ) as tmpvol from (select * from t_m5 union all select * from t_m6 ) as t_m56 ) as tmp_t1 where tmpvol > 0 order by instrumentid asc, tradingday asc, Volume asc
水平拆分连接查询语句
最新推荐文章于 2025-11-24 15:52:05 发布
2352

被折叠的 条评论
为什么被折叠?



