A pupil Tim gets homework to identify whether three line segments could possibly form a triangle.
However, this assignment is very heavy because there are hundreds of records to calculate. Could you help Tim by writing a query to judge whether these three sides can form a triangle, assuming table triangle holds the length of the three sides x, y and z.
1 | | x | y | z | |
For the sample data above, your query should return the follow result:
1 | | x | y | z | triangle | |
1 | # Write your MySQL query statement below |