sql >> Database teknologi >  >> RDS >> Mysql

hvor 1=1 udsagn

Det er normalt, når folk opbygger SQL-sætninger.

Når du tilføjer and value = "Toyota" du behøver ikke bekymre dig om, hvorvidt der er en tilstand før eller bare HVOR. Optimeringsværktøjet bør ignorere det

Ingen magi, bare praktisk

Eksempelkode:

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"

Ellers skulle du have et kompliceret sæt logik:

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;


  1. Opdater en databasepostkonto (SSMS)

  2. Brug af Oracle JDeveloper med MySQL Database Service på Oracle Cloud Platform, del 2

  3. OPDATERINGER til statistik

  4. Databasevalg til oprettelse af to forbundne tabeller?