SQL Server相当于PostgreSQL distinct on()

前端之家收集整理的这篇文章主要介绍了SQL Server相当于PostgreSQL distinct on()前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我想要一个sql Server相当于Postgresql distinct on()
a  b
----
1  1
1  2
2  2
2  1
3  3

select distinct on (a) * 
from my_table

a  b
----
1  1
2  2
3  3

我可以在sql Server中做:

select a,min(b) -- or max it does not matter
from my_table
group by a

但是在有很多列的情况下,查询是一个特殊的查询是非常繁琐的.有没有办法做到这一点?

解决方法

您可以尝试ROW_NUMBER,但可能会影响您的效果.
;WITH CTE AS
(
    SELECT *,ROW_NUMBER() OVER(PARTITION BY a ORDER BY b) Corr
    FROM my_table
)
SELECT *
FROM CTE
WHERE Corr = 1
原文链接:https://www.f2er.com/mssql/76236.html

猜你在找的MsSQL相关文章