Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8783235
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 13, 20262026-06-13T20:46:38+00:00 2026-06-13T20:46:38+00:00

I was wondering if it was possible and surely it must be. I’d like

  • 0

I was wondering if it was possible and surely it must be. I’d like to basically create a dymanic SQL statement conditionally based on user input from (well for this example, we’ll use 3 textbox inputs):

var firstname = document.getElementById('firstname').value
var middle = document.getElementById('middle').value
var lastname = document.getElementById('lastname').value
var SQL

(if all 3 fields are filled out…)

SQL = "SELECT * FROM TABLE WHERE [Firstname] = '" + firstname + "' AND [Middle] = '" + middle + "' AND [Lastname] = '" + lastname + "'"

(if 2 of the 3 fields are filled out…)

SQL = "SELECT * FROM TABLE WHERE [Firstname] = '" + firstname + "' AND [Lastname] = '" + lastname + "'"

Is there a better way to be doing this? Something shorter? or will I have to evaluate text in each field and then define the SQL?

Just was wondering, but it never hurts to ask.

Jay

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-13T20:46:40+00:00Added an answer on June 13, 2026 at 8:46 pm

    Something like that should work…

    SQL = "SELECT * FROM TABLE WHERE 
    
      1 =
      (
      case
         when LEN('" + firstname + "') > 0  and LEN('" + lastname + "') > 0 and LEN('" + middle + "') > 0 then ([Firstname] = '" + firstname + "' AND [Lastname] = '" + lastname + "' AND [Middle] = '" + middle + "')
         when LEN('" + firstname + "') = 0  and LEN('" + lastname + "') > 0 and LEN('" + middle + "') > 0 then ([Lastname] = '" + lastname + "' AND [Middle] = '" + middle + "')
         ...
      end
      )
    

    Or better:

    SQL = "SELECT * FROM TABLE WHERE 
    (
      (LEN('" + firstname + "') > 0 AND [FirstName] = '" + firstname + "') 
     OR 
       LEN('" + firstname + "') = 0
    ) 
    AND (same for secondName) 
    AND (same for middle)"
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I am wondering is it possible to create user groups on the fly when
Wondering if its possible (technically and licensing) to create a website for a Customer
I wondering if it possible to have a preprocessor OR or AND statement? I
I was wondering if it possible to access iPhone User Music, Videos, Photos and
I was wondering if it possible to link a category to 'My Account'. Basically
Just wondering if its possible to convert the following to an IF statement in
I'm wondering if its possible to join together IEnumerable's. Basically I have a bunch
just wondering is it possible to use mixed mode on sql server 2005 for
I was wondering is it possible to add an +1 button (Facebook 'like' equivalent)
I was wondering is it possible to execute formulas with vlookup? Like: frequency date

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.