這段代碼應該是由程序(例如Java)中生成的,where條件中 1=1 以後的條件是經過 if 塊動態變化的。例如:sql
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」而致使語法錯誤。code
動態SQL中鏈接AND條件索引
where 1=1 是爲了不where 關鍵字後面的第一個詞直接就是 「and」而致使語法錯誤。it
where後面總要有語句,加上了1=1後就能夠保證語法不會出錯!table
select * from table where 1=1
由於table中根本就沒有名稱爲1的字段,因此該SQL等效於select * from table,效率
這個SQL語句很明顯是全表掃描,須要大量的IO操做,數據量越大越慢,select
建議查詢時增長必輸項,即where 1=1後面追加一些經常使用的必選條件,而且將這些必選條件創建適當的索引,效率會大大提升語法
拷貝表程序
create table table_name as select * from Source_table where 1=1;
複製表結構developer
create table table_name as select * from Source_table where 1 <> 1;
來源:cloud.tencent.com/developer/article/1475146