postgreSQL中where子句执行顺序 - 多个and从左到右依次执行

前端之家收集整理的这篇文章主要介绍了postgreSQL中where子句执行顺序 - 多个and从左到右依次执行前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

思路参考http://blog.sina.com.cn/s/blog_4586764e0100mdif.html

实验:

执行select * from t_table where 1=2 and 1=1/0;
输出

执行select * from t_table where 1=1/0 and 1=2;
输出如下:

ERROR:  division by zero
********** 错误 **********
ERROR: division by zero
sql 状态: 22012

结论:

postgresql中where子句执行顺序 - 多个and从左到右依次执行

原文链接:https://www.f2er.com/postgresql/194502.html

猜你在找的Postgre SQL相关文章