从 1 列中选择不同的值
我想通过此查询仅从一列(BoekingPlaatsId 列)中选择不同的值:
I want to select distinct values from only one column (the BoekingPlaatsId column) with this query:
SELECT MAX(BoekingPlaatsId), BewonerId, Naam, VoorNaam
FROM table
GROUP BY BewonerId, Naam, VoorNaam
如何在 SQL Server 中执行此操作?
How do I do that in SQL Server?
推荐答案
DISTINCT
如果你只想要用户名应该可以:
DISTINCT
should work if you just want the user names:
SELECT DISTINCT BewonerId, Naam, Voornaam
FROM TBL
但如果您需要最小 ID 值,请按名称分组...
but if you need the minimum ID values, group by the names...
SELECT MIN(BoekingPlaatsId), MIN(BewonerId), Naam, Voornaam
FROM TBL
GROUP BY Naam, Voornaam
相关文章