1
有沒有一種方法可以告訴我的MySQL查詢從一個特定的ID開始,並在另一個使用MySQL結束? where id =x or id = y
:MySQL查詢問題
有沒有一種方法可以告訴我的MySQL查詢從一個特定的ID開始,並在另一個使用MySQL結束? where id =x or id = y
:MySQL查詢問題
使用where id between x and y
http://dev.mysql.com/doc/refman/5.0/en/comparison-operators.html#operator_between
根據句話
一個選項更新。 第二個選項:where id in (x,y)
如果我只是想要這兩個id相關的東西,那麼別的什麼。 – helloWORLD 2010-08-19 08:00:57
一個選項:其中id = x或id = y。 2選項:其中id在(x,y) – 2010-08-19 08:03:37
它的幫助嗎? – 2010-08-19 08:10:57