I'm sure this will fall into the "things I should know", but I'm stuck. I'm trying to create a FAQ section where questions are organized by topic.
If this is my select statement
how can I create a heading that contains the value in the help_category for each unique category. In other words, what I want to end up with is "General" (one of the values in help_category) with the questions contained underneath.
I hope I'm making sense for a Monday!
Thanks in advance!
Michelle
If this is my select statement
Code:
SELECT help_question, help_link, help_category, help_posted, help_answer FROM dbo.help_faq ORDER BY help_category, help_posted DESC
how can I create a heading that contains the value in the help_category for each unique category. In other words, what I want to end up with is "General" (one of the values in help_category) with the questions contained underneath.
I hope I'm making sense for a Monday!
Thanks in advance!
Michelle