How would you write a query to select all teams that won either 3, 6, 9 or 12 games

Untitled Forums Assignment Help How would you write a query to select all teams that won either 3, 6, 9 or 12 games

Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #7166
    Aakanksha
    Participant

    How would you write a query to select all teams that won either 3, 6, 9 or 12 games?

    #11858
    Aakanksha
    Participant

    SELECT teamname FROM tablename WHERE teamwon IN (3, 6, 9, 12)

Viewing 2 posts - 1 through 2 (of 2 total)
  • You must be logged in to reply to this topic.