我正在寻找一种解决方案,我可以直接在我的 sql 语句中根据字段值获取结果。
例如,如果我有以下结构:
calculated_result result_one result_two result_three
1 2.50 3.40 2.90
2 1.90 2.00 3.90
1 1.30 2.23 1.50
然后我想进行搜索,它应该返回所有计算结果为 1 且 result_one 高于 2.30 且小于或等于 2.65 的结果。
问题是,我不知道如何只返回适合用户搜索的行。
computed_result = 1 应该检查 result_one 是否大于和小于行内容计算结果 = 2 应该检查 result_two 是否大于和小于行内容等
希望这是有道理的。