简体   繁体   中英

Selecting unique entries from a column

I have this table ID | Category | Subcategory |

           1  |      Books       |    Comic         |
           2  |      Books       |   Fiction        |
           3  |      Cars        |     New          |
           4  |      Books       |   Non- fiction   |
           4  |      Cars        |    Second hand   |

and I want to select only unique entries from the column 'Category'. That is, I want 'Books' and 'Cars' to be selected only once. How can I write a query ?? Help please.

You mean distinct ?

SELECT Distinct Category
FROM Table

Or group by

SELECT Category
FROM Table
GROUP BY Category

Group by enables you to retrieve various aggregates based on your query (such as number of items in category etc...)

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM