-
Notifications
You must be signed in to change notification settings - Fork 22
Expand file tree
/
Copy pathTriangleJudgement.sql
More file actions
50 lines (40 loc) · 1.1 KB
/
TriangleJudgement.sql
File metadata and controls
50 lines (40 loc) · 1.1 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
-- Table: Triangle
-- +-------------+------+
-- | Column Name | Type |
-- +-------------+------+
-- | x | int |
-- | y | int |
-- | z | int |
-- +-------------+------+
-- In SQL, (x, y, z) is the primary key column for this table.
-- Each row of this table contains the lengths of three line segments.
-- Report for every three line segments whether they can form a triangle.
-- Return the result table in any order.
-- The result format is in the following example.
-- Example 1:
-- Input:
-- Triangle table:
-- +----+----+----+
-- | x | y | z |
-- +----+----+----+
-- | 13 | 15 | 30 |
-- | 10 | 20 | 15 |
-- +----+----+----+
-- Output:
-- +----+----+----+----------+
-- | x | y | z | triangle |
-- +----+----+----+----------+
-- | 13 | 15 | 30 | No |
-- | 10 | 20 | 15 | Yes |
-- +----+----+----+----------+
-- Write your PostgreSQL query statement below
-- Solution
select x,
y,
z,
case when (x + y > z and
y + z > x and
z + x > y) then 'Yes'
else 'No'
end as triangle
from Triangle;