how to use DISTINCT when I have multiple column in sql server

时光怂恿深爱的人放手 提交于 2019-12-29 06:13:30

问题


I have the following query:

select carBrand, carYear, carModel from cars;

what I want is to get only different car names.

I wrote this, but it is not what i want.

select DISTINCT carBrand, carYear, carModel from Cars;

how can I solve this problem?


回答1:


try

SELECT carBrand , carYear ,carModel 
FROM Cars 
GROUP BY carBrand , carYear ,carModel;



回答2:


DISTINCT works on the entire row, not a specific column. If you want to get the unique names, select only that column.

SELECT DISTINCT carBrand FROM Cars



回答3:


I am not sure why the accepted answer has been accepted and certainly do not understand why it has been upvoted but the OP has the following in the question:

I wrote this, but it is not what i want.

select DISTINCT carBrand, carYear, carModel from Cars;

The accepted answer has suggested to use:

SELECT carBrand , carYear ,carModel 
FROM Cars 
GROUP BY carBrand , carYear ,carModel;

which returns the exact same result as the OP's query. Actually the suggestion in the answer (use group by) is not even encouraged to be used for getting distinct results but should be used for aggregation. See this answer for more info.

In addition, SQL Server is smart enough to understand that if there is no aggregation function in the query, then the query is actually asking for distinct so it will use distinct under the hood.

Distinct will do a distinct on the entire row as @MarkByers has indicated in his answer.

For those who want to test the above, here is a script that will create a table with 3 columns and then fill it with data. Both (distinct and group by) will return the same resultset.

CREATE TABLE [dbo].[Cars](
    [carBrand] [varchar](50) NULL,
    [carYear] [int] NULL,
    [carModel] [varchar](50) NULL
)
go;
insert into Cars values('BMW', 2000, '328 i');
insert into Cars values('BMW', 2000, '328 i');
insert into Cars values('BMW', 2000, '328 i');
insert into Cars values('BMW', 2000, '3M');

Both queries will return this result:

carBrand    carYear    carModel
BMW         2000       328 i
BMW         2000       3M

Conclusion

DO NOT use group by if you want distinct records. Use distinct. Use group by when you use aggregate function such as SUM, COUNT etc.




回答4:


It depends what you want. For example if you want 'Toyota Corolla' and 'Toyota Camry', but ignore the year, then you could do this:

SELECT DISTINCT carBrand + ' ' + carModel AS carName
FROM Cars;


来源:https://stackoverflow.com/questions/10066166/how-to-use-distinct-when-i-have-multiple-column-in-sql-server

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!