i have three checkboxs in my application. If the user ticks a combination of the boxes i want to return matches for the boxes ticked and in the case where a box is not checked i just want to return everything . Can i do this with single SQL command?
feedback
|
|
You can build a SQL statement with a dynamic where clause:
Or you can create a stored procedure with variables to do this:
| |||
|
feedback
|
|
I recommend doing the following in the WHERE clause;
It is not one SQL command, but works very well for me. Basically the first part checks if the switch is set (checkbox selected). The second is the filter given the checkbox is selected. Here you can do whatever you would normally do. | ||||
|
feedback
|
|
sure. example below assumes SQL Server but you get the gist. You could do it pretty easily using some Dynamic SQL Lets say you were passing your checkboxes to a sproc as bit values.
| |||||||||
feedback
|
|
Sure you can. If you compose your SQL SELECT statement in the code, then you just have to generate:
This is single SQL command, but it is different depending on the selection, of course. Now, if you would like to use one stored procedure to do the job, then the implementation would depend on the database engine since what you need is to be able to pass multiple parameters. I would discourage using a procedure with just plain 3 parameters, because when you add another check-box, you will have to change the SQL procedure as well. | |||
|
feedback
|
The inner subquery will return either the list of the checked options, or all possible options if the list is empty. For
See this entry in my blog for performance detail: | ||||
|
feedback
|
|
If you pass a null into the appropriate values, then it will compare that specific column against itself. If you pass a value, it will compare the column against the value
| |||
|
feedback
|
|
The question did not specify a DB product or programming language. However it can be done with ANSI SQL in a cross-product manner. Assuming a programming language that uses $var$ for variable insertion on strings.
On the server you get all selected values in a list, so if the first two boxes are selected you would have a GET/POST variable like
so you build a query like this (pseudocode)
and your DB will see:
Which is a valid SQL query. The first condition matches any row when nothing is selected, otherwise the right side of the OR statement will match any row that is one of the colors. This query scales to an unlimited number of options without modification. The brackets around each clause are optional as well but I use them for clarity. Naturally you will need to protect the string from SQL injection using parameters or escaping as you see fit. Otherwise a malicious value for colors will allow your DB to be attacked. | ||||
|
feedback
|