Efficient selection of "all" rows

Efficient selection of "all" rows

The front-end system has "ALL" as a dropdown option. I do not want to blow out the "ALL" into individual elements because it will potentially increase my database 100-fold. My other options are to write the SQL to look for both the actual value (eg. US) and then look for "ALL", but that would be too slow for our system. Is there any way solve this problem elegantly? eg. Country dropdown - All, US, FR, etc

    Requires Free Membership to View

    By submitting your registration information to SearchOracle.com you agree to receive email communications from TechTarget and TechTarget partners. We encourage you to read our Privacy Policy which contains important disclosures about how we collect and use your registration and other information. If you reside outside of the United States, by submitting this registration information you consent to having your personal data transferred to and processed in the United States. Your use of SearchOracle.com is governed by our Terms of Use. You may contact us at webmaster@TechTarget.com.

A front-end system with a dropdown implies a backend script that generates the SQL based on the value passed over in the form's dropdown field. The best way to handle the situation is to put a conditional statement into the script that tests for the ALL value and avoids generating the WHERE clause. Here's how it might look in ColdFusion --

<CFQUERY NAME="queryname" DATASOURCE="#ds#">
  select *
    from yourTable
 <CFIF form.country IS "ALL">
 <CFELSE>
   where country = '#form.country#'
 </CFIF>
</CFQUERY>

Note that when the form's country field value is ALL, the WHERE clause is not generated, so the query will return all rows.

For More Information

  • What do you think about this answer? E-mail the edtiors at editor@searchDatabase.com with your feedback.
  • The Best SQL Web Links: tips, tutorials, scripts, and more.
  • Have an SQL tip to offer your fellow DBAs and developers? The best tips submitted will receive a cool prize. Submit your tip today!
  • Ask your technical SQL questions -- or help out your peers by answering them -- in our live discussion forums.
  • Ask the Experts yourself: Our SQL, database design, Oracle, SQL Server, DB2, metadata, object-oriented and data warehousing gurus are waiting to answer your toughest questions.

This was first published in March 2002

Join the conversationComment

Share
Comments

    Results

    Contribute to the conversation

    All fields are required. Comments will appear at the bottom of the article.