Skip to content

Latest commit

 

History

History
7 lines (7 loc) · 237 Bytes

610. Triangle Judgement.md

File metadata and controls

7 lines (7 loc) · 237 Bytes

610. Triangle Judgement

Question Link

Solution

# Write your MySQL query statement below
select x, y, z, if(x+y>z and x+z>y and y+z>x,'Yes','No') triangle from triangle