
Is this Showroom table correct? I want to be able to see this data:

I’m just not sure how to reference MakeName, ModelName and Price in the showroom table, is it right as it is or do I need to change something?
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 don’t want to have those fields in your ShowRoom table (unless that’s just a View). Keep that table to your Id and your CarId. Then you can use
INNER JOINsto return the appropriate data:Good luck.