Problem: 610. 判断三角形 Code select x,y,z, case when x + y > z and x + z > y and y + z > x then 'Yes' else 'No' end as 'triangle' from triangle;