Type of Triangle
Data Analyst

빅데이터 관련 자료/[SQL] Basic

Type of Triangle

carpe08 2021. 8. 13. 20:03
320x100
320x100
  • Write a query identifying the type of each record in the TRIANGLES table using its three side lengths. Output one of the following statements for each record in the table:
    • Equilateral: It's a triangle with  sides of equal length.
    • Isosceles: It's a triangle with  sides of equal length.
    • Scalene: It's a triangle with  sides of differing lengths.
    • Not A Triangle: The given values of A, B, and C don't form a triangle.
  • Input Format
  • The TRIANGLES table is described as follows:

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

 

 

 

 

 

 

# 나의 해답

SELECT CASE WHEN A + B > C AND B + C > A AND A + C > B THEN      
       CASE WHEN A = B AND B = C THEN 'Equilateral'
            WHEN A = B OR B = C OR A = C THEN 'Isosceles'     
       ELSE 'Scalene'
       END
       ELSE 'Not A Triangle'
       END
FROM TRIANGLES;

 

320x100
320x100

'빅데이터 관련 자료 > [SQL] Basic' 카테고리의 다른 글

Occupations  (0) 2021.08.22
The PADS  (0) 2021.08.14
Employee Salaries  (0) 2021.08.12
Employee Names  (0) 2021.08.12
Higher Than 75 Marks  (0) 2021.08.11