Revising Aggregations - Averages Hackerrank Solution SQL For Explanation Watch Video : Code:: select avg(population) from city where district = 'California';
Type of Triangle Hackerrank Solution SQL For Explanation Watch Video : Code: SELECT CASE WHEN A+B<=C OR B+C<=A OR C+A<=B THEN 'Not A Triangle' WHEN A=B AND B=C THEN 'Equilateral' WHEN A=B OR B=C OR C=A THEN 'Isosceles' ELSE 'Scalene' END FROM TRIANGLES;
Employee Salaries Hackerrank Solution SQL For Explanation Watch Video: Code: select name from Employee where salary>2000 and months < 10 order by employee_id;
Weather Observation Station 12 Hackerrank Solution SQL For Explanation Watch Videos:: Code: select distinct city from station where not(city like 'A%' or city like 'E%' or city like 'I%' or city like 'O%' or city like 'U%') and not(city like '%A' or city like '%E' or city like '%I' or city like '%O' or city like '%U');