這段程式碼應該是由程式(例如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;
最新評論