We use cookies to ensure you have the best browsing experience on our website. Please read our cookie policy for more information about how we use cookies.
I wrote this but its throwing error
select
case
When (a=b AND b=c) then "Equilateral"
when (a=b AND b<>c) OR (a=c AND a<>b) OR (b=c AND a<>b) then "Isosceles"
when (a<>b AND b<>c AND a<>c AND(a+b>c AND a+c>b AND b+c>a)) then "Scalene"
else "Not A Triangle"
end AS result
from Triangles;
Cookie support is required to access HackerRank
Seems like cookies are disabled on this browser, please enable them to open this website
Type of Triangle
You are viewing a single comment's thread. Return to all comments →
I wrote this but its throwing error select case When (a=b AND b=c) then "Equilateral" when (a=b AND b<>c) OR (a=c AND a<>b) OR (b=c AND a<>b) then "Isosceles" when (a<>b AND b<>c AND a<>c AND(a+b>c AND a+c>b AND b+c>a)) then "Scalene" else "Not A Triangle" end AS result from Triangles;