-
Notifications
You must be signed in to change notification settings - Fork 0
/
610. Triangle Judgement.sql
50 lines (39 loc) · 1.06 KB
/
610. Triangle Judgement.sql
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
-- Problem
-- +-------------+------+
-- | 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 |
-- +----+----+----+----------+
-- Solution
select x, y, z, (
case
when abs(x) + abs(y) > abs(z)
and abs(y) + abs(z) > abs(x)
and abs(z) + abs(x) > abs(y) then 'Yes'
else 'No'
end
) triangle
from Triangle;