The following challenges all revolve around simple SELECT statements that make use of SELECT, FROM, WHERE, and ORDER BY. The WHERE clauses will use and three basic boolean operators as well as some of ...
This repository contains solutions to various SQL challenges from HackerRank. It includes solutions to 25 questions in the SQL (Basic)/(Intermediate) Select Skill in the Easy and Medium Difficulty ...
Here are the 4 questions asked in HackerRank SQL Basic Certification Exam, from these 2 will be available in one attempt. SELECT ei.employee_ID, ei.name FROM employee_information ei JOIN ...
SELECT ei.employee_ID, ei.name FROM employee_information ei JOIN last_quarter_bonus b ON b.employee_ID = ei.employee_ID WHERE ei.division LIKE 'HR' AND b.bonus >= 5000; This is one question solution ...