1. ホーム
  2. マイスル

[解決済み】「where 1=1」文【重複あり

2022-04-10 09:13:51

質問

<ブロッククオート

重複の可能性があります。

なぜSQL句でWHERE 1=1 AND <conditions>を使用するのでしょうか?

MySQLデータベースのテーブルを照会するために、次のようなステートメントを使用している人を見かけました。

select * from car_table where 1=1 and value="TOYOTA"

しかし 1=1 ここでいう意味とは?

どのように解決するのですか?

SQLステートメントを構築する際に発生することが多いようです。

を追加した場合 and value = "Toyota" の前に条件があるか、WHEREだけかを気にする必要はない。オプティマイザーはそれを無視するはずです。

魔法ではなく、実用的なもの


コード例です。

commandText = "select * from car_table where 1=1";

if (modelYear <> 0)     commandText += " and year="+modelYear
if (manufacturer <> "") commandText += " and value="+QuotedStr(manufacturer)
if (color <> "")        commandText += " and color="+QuotedStr(color)
if (california)         commandText += " and hasCatalytic=1"

そうしないと、複雑なロジックを組まなければならなくなります。

commandText = "select * from car_table"
whereClause = "";
if (modelYear <> 0)
{
   if (whereClause <> "") 
      whereClause = whereClause + " and ";
   commandText += "year="+modelYear;
}
if (manufacturer <> "")
{    
   if (whereClause <> "") 
      whereClause = whereClause + " and ";
   commandText += "value="+QuotedStr(manufacturer)
}
if (color <> "")
{
   if (whereClause <> "") 
      whereClause = whereClause + " and ";
   commandText += "color="+QuotedStr(color)
}
if (california)
{
   if (whereClause <> "") 
      whereClause = whereClause + " and ";
   commandText += "hasCatalytic=1"
}

if (whereClause <> "")
   commandText = commandText + "WHERE "+whereClause;