You are viewing a single comment's thread. Return to all comments →
I'm not understanding why my input is wrong ;( pls help
select case when a = b and b = c then 'Equilateral' when a = b or b = c or a = c then 'Isosceles' when a + b < c then 'Not A Triangle' else 'Scalene' end as is_triangle from triangles t;
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'm not understanding why my input is wrong ;( pls help