Hi,
I have a database that contains various tables (These are a stripped down version of the tables)
tbl_question
questionID
question
tbl_response
responseID
questionID
clientID
response
tbl_client
clientID
clientInfo
I need to get the top 20 questions that have been answered the most times. I thought using COUNT would work til I realized it didn't work the way I thought it did.
I could certainly use some help figuring this out...