question

Ecaleb avatar image
Ecaleb asked

What is the best way to solve this query?

Given the following table and column names, write a query to return the LastName, FirstName, and SkillLevel of the Persons where the Description of the Hobby is ‘Golf’. Person Code LastName FirstName Hobby Code Description HobbySkillLevel PersonCode HobbyCode SkillLevel
personal-development
1 comment
10 |1200

Up to 2 attachments (including images) can be used with a maximum of 512.0 KiB each and 1.0 MiB total.

Grant Fritchey avatar image Grant Fritchey ♦♦ commented ·
This sure sounds like homework. I'd be happy to help, but since I don't get the grade, I'm not doing all the work. Can you edit the question and show what you've tried that hasn't worked? I'd be happy to pitch in from there.
0 Likes 0 ·

1 Answer

·
yossim avatar image
yossim answered
select [LastName] ,[FirstName] ,[SkillLevel] from Person where [Hobby Code Description] = 'Golf' Do I missed something :)
10 |1200

Up to 2 attachments (including images) can be used with a maximum of 512.0 KiB each and 1.0 MiB total.

Write an Answer

Hint: Notify or tag a user in this post by typing @username.

Up to 2 attachments (including images) can be used with a maximum of 512.0 KiB each and 1.0 MiB total.