Mysql 计算布尔表达式的值
Posted 赵晓东-Nastu
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Mysql 计算布尔表达式的值相关的知识,希望对你有一定的参考价值。
描述
表 Variables:
+---------------+---------+
| Column Name | Type |
+---------------+---------+
| name | varchar |
| value | int |
+---------------+---------+
name 是该表主键.
该表包含了存储的变量及其对应的值.
表 Expressions:
+---------------+---------+
| Column Name | Type |
+---------------+---------+
| left_operand | varchar |
| operator | enum |
| right_operand | varchar |
+---------------+---------+
(left_operand, operator, right_operand) 是该表主键.
该表包含了需要计算的布尔表达式.
operator 是枚举类型, 取值于('<', '>', '=')
left_operand 和 right_operand 的值保证存在于 Variables 表单中.
写一个 SQL 查询, 以计算表 Expressions 中的布尔表达式.
返回的结果表没有顺序要求.
查询结果格式如下例所示.
Variables 表:
+------+-------+
| name | value |
+------+-------+
| x | 66 |
| y | 77 |
+------+-------+
Expressions 表:
+--------------+----------+---------------+
| left_operand | operator | right_operand |
+--------------+----------+---------------+
| x | > | y |
| x | < | y |
| x | = | y |
| y | > | x |
| y | < | x |
| x | = | x |
+--------------+----------+---------------+
Result 表:
+--------------+----------+---------------+-------+
| left_operand | operator | right_operand | value |
+--------------+----------+---------------+-------+
| x | > | y | false |
| x | < | y | true |
| x | = | y | false |
| y | > | x | true |
| y | < | x | false |
| x | = | x | true |
+--------------+----------+---------------+-------+
如上所示, 你需要通过使用 Variables 表来找到 Expressions 表中的每一个布尔表达式的值.
思路
因为设计到了两个字段联系同一个字段,所以最好用两个left join 进行连接,在SQL中select
1>2 为0 ,2> 1为1 所有如果正确就会返回0,错误就会返回1,而不是Java中boolean自动帮你替换,所以我们还需要写条件语句
select
e.*,
case
when operator='=' and v1.value = v2.value then 'true'
when operator='>' and v1.value > v2.value then 'true'
when operator='<' and v1.value < v2.value then 'true'
else 'false'
end value
from
Expressions e
left join
Variables v1
on e.left_operand = v1.name
left join
Variables v2
on e.right_operand = v2.name
以上是关于Mysql 计算布尔表达式的值的主要内容,如果未能解决你的问题,请参考以下文章
LeetCode:Database 98.计算布尔表达式的值