练习sql语句,所有题目来自于力扣(https://leetcode.cn/problemset/database/)的免费数据库练习题。
610.判断三角形
表:Triangle
列名 | 类型 |
---|---|
x | int |
y | int |
z | int |
在sql中,(x,y,z)是该表的主键列。该表的每一行包含三个线段的长度。
对每三个线段报告它们是否可以形成一个三角形。
首先梳理一下表内容,题目给了一张表,分别是三角形的三边,其次分析需求,需要判断三条线段是否能组成三角形,利用原理,两边之和大于第三边求解,两边差小于第三边。
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
或者还可以使用if函数进行判断
select x,y,z,if(x + y > z and x + z > y and z + y > x,"Yes","No") as triangle
from Triangle
能运行就行。