Please start any new threads on our new site at https://forums.sqlteam.com. We've got lots of great SQL Server experts to answer whatever question you can come up with.
vital101 Starting Member
4 Posts
SELECT data.answerID, questions.question, data.questionTypeFROM dbo.data INNER JOINquestions ON (data.questionID = questions.question_num) AND (data.questionType = 'serviceRequest')
RyanRandall Master Smack Fu Yak Hacker
1074 Posts
SELECT avg(data.answerID), questions.question, data.questionTypeFROM dbo.data INNER JOINquestions ON (data.questionID = questions.question_num) AND (data.questionType = 'serviceRequest')group by questions.question, data.questionType
SQLTeam.com Articles via RSS
SQLTeam.com Weblog via RSS
- Advertisement -
Articles
Forums
Blogs
Contact Us
About the Site