Untitled

 avatar
user_8556937499
plain_text
4 years ago
206 B
5
Indexable
select case
when A+B <= C or A+C <= B or B+C <= A then "Not A Triangle"
when A=B and B=C then "Equilateral"
when A=B or A=C or B=C then "Isosceles"
else "Scalene"
end as triangles_type
from TRIANGLES;
Editor is loading...