Type of Triangle EasySQL (Basic) – HackerRank Solution SQL, Best and Optimal Solutions , All you need.
Solutions of SQL all HackerRank:
Here are all the Solutions of All of SQL of Hacker Rank , Leave a comment for similar posts
SQL Type of Triangle EasySQL (Basic) HackerRank Solution
select (case
when not (a + b > c and b + c > a and 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;
SQL (Basic)
SQL (Intermediate)
SQL (Advanced)
Basic Select
Advanced Select
Aggregation
Basic Join
Advanced Join
Alternative Queries
Leave a comment below