Identifying Triangle
Write a query identifying the_type_of each record in theTRIANGLES table using its three side lengths. Output one of the following statements for each record in the table:
Equilateral
: It's a triangle with 3 sides of equal length.
Isosceles
: It's a triangle with 2 sides of equal length.
Scalene
: It's a triangle with 3 sides of differing lengths.
Not A Triangle
: The given values of A, B, and _C _don't form a triangle.
Input Format
TheTRIANGLEStable is described as follows:

Each row in the table denotes the lengths of each of a triangle's three sides.
Sample Input

Sample Output
Explanation
Values in the tuple form an Isosceles triangle, because .
Values in the tuple form an Equilateral triangle, because .
Values in the tuple form a Scalene triangle, because .
Values in the tuple cannot form a triangle because the combined value of sides and is not larger than that of side .
Thoughts:
Ideas from GeeksforGeeks
Code
Last updated
Was this helpful?