用Mimer Validator检查SQL查询
程序员文章站
2023-11-12 16:52:28
问:假如我的一个表里含有(a,b,c,d)和(a,b)形成组合键。我能在列值中写这个查询吗?例如: 复制代码 代码如下:select a,c,d from mytable...
问:假如我的一个表里含有(a,b,c,d)和(a,b)形成组合键。我能在列值中写这个查询吗?例如:
select a,c,d from mytable
where (a,b) in ((1,2),(1,4),(1,5))
答:可以。
如果你怀疑有些sql架构是否有效,就通过mimer validator运行一下。在这种情况中,你的查询(你登录校验器中的查询)将得到如下结果:
* 在sql-92中, 无效
* 在sql-99和sql_2003中, 有效,并带有如下注释:
f641, "row and table constructors"
t051, "row types"
f561, "full value expressions"
这时将会用到core sql-99以外的如下特征或core sql-200x (draft):
f641, "row and table constructors"
t051, "row types"
f561, "full value expressions"
也就是说如果你特殊的数据库系统不支持那些选择特征,你仍然会收到错误信息。
也许你想尝试以下查询:
select a,c,d
from mytable
where a = 1 and b = 2
or a = 1 and b = 4
or a = 1 and b = 5
这个查询运行十分顺利,因为(a,b)就是一个键,所以用索引查询会比较有效。
复制代码 代码如下:
select a,c,d from mytable
where (a,b) in ((1,2),(1,4),(1,5))
答:可以。
如果你怀疑有些sql架构是否有效,就通过mimer validator运行一下。在这种情况中,你的查询(你登录校验器中的查询)将得到如下结果:
* 在sql-92中, 无效
* 在sql-99和sql_2003中, 有效,并带有如下注释:
f641, "row and table constructors"
t051, "row types"
f561, "full value expressions"
这时将会用到core sql-99以外的如下特征或core sql-200x (draft):
f641, "row and table constructors"
t051, "row types"
f561, "full value expressions"
也就是说如果你特殊的数据库系统不支持那些选择特征,你仍然会收到错误信息。
也许你想尝试以下查询:
select a,c,d
from mytable
where a = 1 and b = 2
or a = 1 and b = 4
or a = 1 and b = 5
这个查询运行十分顺利,因为(a,b)就是一个键,所以用索引查询会比较有效。