為什麼要用where 1=1

haoge0205發表於2019-08-27

where 1=1; 這個條件始終為True,在不定數量查詢條件情況下, 1= 1可以很方便的規範語句,1=1 是永恆成立的,意思無條件的,也就是說在SQL語句中有沒有這個1=1都可以。

如:web介面查詢使用者的資訊,where預設為1=1,這樣使用者即使不選擇任何條件,sql查詢也不會出錯。如果使用者選擇了姓名,那麼where變成了where 1=1 and 姓名='使用者輸入的姓名',如果還選擇了其他的條件,就不斷在where 條件後追加 and語句就行了。

如果不用1=1的話,每加一個條件,都要判斷前面有沒有where 條件,如果沒有就寫where ...,有就寫and語句,因此此時用1=1可以簡化了應用程式的複雜度。

例如為不定數量的查詢條件,我們在後臺寫查詢的時候,類似於這樣的語句 string sql ="select * from table where"

if(starttime!=null){

sql =sql+" starttime="+starttime

if(endtime !=null){

sql =sql+"and endtime ="+endtime

}

這時我們的查詢語句就是 select * from table where starttime =2015-04-05 and endtime = 2015-04-07,查詢語句正確

但是如果條件都不滿足的話,語句就變成了 select * from table where ,這時候查詢就會報錯,

加上1=1的時候

string sql ="select * from table where 1=1",

if(starttime!=null){

sql =sql+" and  starttime="+starttime

if(endtime !=null){

sql =sql+"and endtime ="+endtime

}

當兩個條件成立的時候 select * from table where 1=1 and starttime =2015-04-05 and endtime = 2015-04-07, 語句正確

當兩個條件不滿足時 select * from table where 1=1 ,語句正確,會返回table表的所有資料


來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/28939273/viewspace-2655211/,如需轉載,請註明出處,否則將追究法律責任。

相關文章