Hi I'm a newbie and want to know if someone can help me to get the correct data out of my table. I've merged two tables but only want the topic listed one time and have the right questions and answers underneath those topics.
Here's my code:
select topics, questions, answer
from topics AS A, QuesNans AS B
where A.topicid = B.topicid
order by b.topicid
Thanks so much for any help anyone can give me.
Here's my code:
select topics, questions, answer
from topics AS A, QuesNans AS B
where A.topicid = B.topicid
order by b.topicid
Thanks so much for any help anyone can give me.