题目来源:力扣(LeetCode)
链接:https://leetcode-cn.com/problems/triangle-judgement
著作权归领扣网络所有。商业转载请联系官方授权,非商业转载请注明出处。
本人思路:
1、题目不难,提醒自己要注意判断语句的写法
select
x,y,z,
case
when x+y>z and x+z>y and z+y>x then 'Yes'
else 'No'
end as triangle
from triangle