Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
1.0k views
in Technique[技术] by (71.8m points)

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

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?

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

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

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

2.1m questions

2.1m answers

60 comments

56.6k users

...