SELECT DISTINCT field1, field2, field3, ...... FROM table
I am trying to accomplish the following sql statement but I want it to return all columns is this possible? Something like:
SELECT DISTINCT field1, * from table
I am trying to accomplish the following sql statement but I want it to return all columns is this possible? Something like:
|
|||
| show 1 more comment |
|
You're looking for a group by:
Which can occasionally be written with a distinct on statement:
On most platforms, however, neither of the above will work because the behavior on the other columns is unspecified. (The first works in MySQL, if that's what you're using.) You could fetch the distinct fields and stick to picking a single arbitrary row each time. On some platforms (e.g. PostgreSQL, Oracle, T-SQL) this can be done directly using window functions:
On others (MySQL, SQLite), you'll need to write subqueries that will make you join the entire table with itself (example), so not recommended. |
|||||||||||||||
|
|
||||
|
|
|
From the phrasing of your question, I understand that you want to select the distinct values for a given field and for each such value to have all the other column values in the same row listed. Most DBMSs will not allow this with neither Think of it like this: if your You can however use aggregate functions (explicitely for every field that you want to be shown) and using a
|
|||
|
|
|
You can do it with a For example:
This also allows you to select only the rows selected in the |
||||
|
|
|
If I understood your problem correctly, it's similar to one I just had. You want to be able limit the usability of DISTINCT to a specified field, rather than applying it to all the data. If you use GROUP BY without an aggregate function, which ever field you GROUP BY will be your DISTINCT filed. If you make your query:
It will show all your results based on a single instance of field1. For example, if you have a table with name, address and city. A single person has multiple addresses recorded, but you just want a single address for the person, you can query as follows:
The result will be that only one instance of that name will appear with its address, and the other one will be omitted from the resulting table. Caution: if your fileds have atomic values such as firstName, lastName you want to group by both.
because if two people have the same last name and you only group by lastName, one of those persons will be omitted from the results. You need to keep those things into consideration. Hope this helps. |
|||
|
|
|
|||||
|
SELECT DISTINCT * FROM tabledoes not work for you? – ypercube May 25 '11 at 15:57distinctby definition. If you are trying to just selectDISTINCT field1but somehow return all other columns what should happen for those columns that have more than one value for a particularfield1value? You would need to useGROUP BYand some sort of aggregation on the other columns for example. – Martin Smith May 25 '11 at 15:57