码迷,mamicode.com
首页 > 数据库 > 详细

where 1=1 是什么鬼?SQL中有这玩意?

时间:2021-03-09 13:11:19      阅读:0      评论:0      收藏:0      [点我收藏+]

标签:拷贝表   第一个   复制   导致   直接   ble   应该   变化   creat   

这段代码应该是由程序(例如Java)中生成的,where条件中 1=1 之后的条件是通过 if 块动态变化的。例如:

String sql="select * from table_name where 1=1";  
  
if( conditon 1) {  
  
  sql=sql+"  and  var2=value2";  
  
}  
  
if(conditon 2) {  
  
  sql=sql+"  and var3=value3";  
  
}  

where 1=1 是为了避免where 关键字后面的第一个词直接就是 “and”而导致语法错误。

动态SQL中连接AND条件

where 1=1 是为了避免where 关键字后面的第一个词直接就是 “and”而导致语法错误。

where后
这段代码应该是由程序(例如Java)中生成的,where条件中 1=1 之后的条件是通过 if 块动态变化的。例如:

String sql="select * from table_name where 1=1";  
  
if( conditon 1) {  
  
  sql=sql+"  and  var2=value2";  
  
}  
  
if(conditon 2) {  
  
  sql=sql+"  and var3=value3";  
  
}  

where 1=1 是为了避免where 关键字后面的第一个词直接就是 “and”而导致语法错误。

动态SQL中连接AND条件

where 1=1 是为了避免where 关键字后面的第一个词直接就是 “and”而导致语法错误。

where后面总要有语句,加上了1=1后就可以保证语法不会出错!

select * from table where 1=1

因为table中根本就没有名称为1的字段,所以该SQL等效于select * from table,

这个SQL语句很明显是全表扫描,需要大量的IO操作,数据量越大越慢,

建议查询时增加必输项,即where 1=1后面追加一些常用的必选条件,并且将这些必选条件建立适当的索引,效率会大大提高

「拷贝表」

create table table_name  as  select  *  from  Source_table  where  1=1;

「复制表结构」

create table table_name  as  select  *  from  Source_table  where  1 <> 1;
```面总要有语句,加上了1=1后就可以保证语法不会出错!

select * from table where 1=1

因为table中根本就没有名称为1的字段,所以该SQL等效于select * from table,

这个SQL语句很明显是全表扫描,需要大量的IO操作,数据量越大越慢,

建议查询时增加必输项,即where 1=1后面追加一些常用的必选条件,并且将这些必选条件建立适当的索引,效率会大大提高

「拷贝表」
```java
create table table_name  as  select  *  from  Source_table  where  1=1;

「复制表结构」

create table table_name  as  select  *  from  Source_table  where  1 <> 1;

where 1=1 是什么鬼?SQL中有这玩意?

标签:拷贝表   第一个   复制   导致   直接   ble   应该   变化   creat   

原文地址:https://www.cnblogs.com/hejunlin/p/14499067.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!