随笔分类 -  SQL Server

摘要:select * from(select *,row_number()over(order by ProductID) as num from Products) as t where t.num>10 and t.num<30 阅读全文
posted @ 2018-05-21 15:35 dxm809