I have 2 tables:
Table:skill
SkillID int(10) unsigned
Description varchar(100)
Table: question
QuestionID int(10) unsigned
SkillID int(10) unsigned
Details varchar(100)
There are many rows in the question table for each skill. I want to run one query listing all skills and only one question for that skill (does not matter which question).
How can that be done?