這段代碼應該是由程序(例如Java)中生成的,where條件中 1=1 之后的條件是通過 if 塊動態(tài)變化的。例如:
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”而導致語法錯誤。
動態(tài)SQL中連接AND條件
where 1=1 是為了避免where 關鍵字后面的第一個詞直接就是 “and”而導致語法錯誤。
where后面總要有語句,加上了1=1后就可以保證語法不會出錯!
select * from table where 1=1
因為table中根本就沒有名稱為1的字段,所以該SQL等效于select * from table,
這個SQL語句很明顯是全表掃描,需要大量的IO操作,數(shù)據(jù)量越大越慢,
建議查詢時增加必輸項,即where 1=1后面追加一些常用的必選條件,并且將這些必選條件建立適當?shù)?a target="_blank">索引,效率會大大提高
拷貝表
create table table_name as select * from Source_table where 1=1;
復制表結構
create table table_name as select * from Source_table where 1 <> 1;
-
SQL
+關注
關注
1文章
753瀏覽量
44032 -
代碼
+關注
關注
30文章
4722瀏覽量
68231
發(fā)布評論請先 登錄
相關推薦
評論