• + 0 comments

    select case WHEN A+B<=C OR B+C<=A OR A+C<=B then "Not A Triangle" when a = b and b = c then 'Equilateral' when a = b or b=c or a = c then 'Isosceles' else 'Scalene' end from Triangles;