I was wondering what the answer should be for 1c. on this website:
SELECT company
FROM route WHERE stop=4
GROUP BY name, ID
this obviously isn’t working, the ID and name isn’t showing up no matter what. What is missing here? Thanks.
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
You need to join the tables as the data you want to return is in a different table to the one which filters the data.