I have a column in my database called 'category' that contains the name of the individual category that each blog post is in ('cars','books','movies').

I need to create a list that contains each of these categories.

When I query the database and echo all my categories I get a list with many duplicates (as expected).

Example:

  • books
  • books
  • books
  • cars
  • movies
  • movies

But what if I just want to display each individual category. How is this done? Can somebody point me to an online resource for this.

example:

  • books
  • cars
  • movies
link|improve this question

feedback

4 Answers

up vote 5 down vote accepted

Use the DISTINCT keyword:

SELECT DISTINCT category FROM posts;
link|improve this answer
feedback

use distinct

select distinct categoryname from category

link|improve this answer
feedback

Use distinct

SELECT DISTINCT column_name(s) FROM table_name

link|improve this answer
feedback

Use DISTINCT while querying database for categories.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.