从1列中选择不同的值 [英] Select distinct values from 1 column

查看:81
本文介绍了从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

这篇关于从1列中选择不同的值的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆