6 kyu

SQL Basics - Monsters using CASE

11,279 of 11,280PG1

Description:

You have access to two tables named top_half and bottom_half, as follows:

top_half schema

  • id
  • heads
  • arms

bottom_half schema

  • id
  • legs
  • tails

You must return a table with the format as follows:

output schema

  • id
  • heads
  • legs
  • arms
  • tails
  • species

The IDs on the tables match to make a full monster. For heads, arms, legs and tails you need to draw in the data from each table.

For the species, if the monster has more heads than arms, more tails than legs, or both, it is a 'BEAST' else it is a 'WEIRDO'. This needs to be captured in the species column.

All rows should be returned (10).

Tests require the use of CASE. Order by species.

Please use pure SQL, only testing is done in Ruby.

Fundamentals
SQL

Stats:

CreatedJun 12, 2017
PublishedJun 12, 2017
Warriors Trained17371
Total Skips1733
Total Code Submissions43630
Total Times Completed11280
SQL Completions11279
Total Stars152
% of votes with a positive feedback rating92% of 1300
Total "Very Satisfied" Votes1098
Total "Somewhat Satisfied" Votes184
Total "Not Satisfied" Votes18
Total Rank Assessments13
Average Assessed Rank
6 kyu
Highest Assessed Rank
5 kyu
Lowest Assessed Rank
8 kyu
Ad
Contributors
  • PG1 Avatar
  • smile67 Avatar
Ad