小小梦想pxh

  博客园 :: 首页 :: 新随笔 :: 联系 :: 订阅 :: 管理 ::

2021年4月16日

摘要: 解决方案:使用row_number() over( partition by) 方法分组排序 with temp as ( select a,b,c from test_table ) select a,b,c from ( select a,b,c,row_number() over (parti 阅读全文
posted @ 2021-04-16 16:05 小小梦想pxh 阅读(141) 评论(0) 推荐(0)