vote up 0 vote down star

I use a regex in my SQL statements for an app that look like this

SELECT * FROM table WHERE id = {{REPLACEME}}

However, sometimes I'm not giving a parameter to replace that string with. Is there a way to replace it with something that matches anything. I tried *, but that does not work.

flag

77% accept rate
I think the OP wants a regex string to use to match to anything. if they wanted to rewrite the WHERE clause to something different, they could just eliminate it completely – KM Oct 2 at 18:47

6 Answers

vote up 1 vote down check

Replace {{REPLACEME}} with

[someValidValueForYouIdType] OR 1=1
link|flag
This does work in this case, but if the predicate becomes more complex, you might get unwanted results due to operator precedence. – Dave Costa Oct 2 at 18:44
Yeah, but I presumed he wanted to get all results when no id is given. It sounds a little weird to me too, but I won't argue with his business logic. I would just return null if no records are found. And probably use some kind of prepared statements instead of regex replacing. – wtaniguchi Oct 2 at 21:01
vote up 5 vote down
  1. SELECT * FROM table WHERE id = id will match all rows that have non-null id
  2. SELECT * FROM table WHERE id = id OR id IS NULL will match all rows.

id is probably a primary key, so you can probably use the former.

link|flag
I don't see how this solves the question. id = id is the same as no WHERE Clause.... (assuming NOT NULL restriction), right? – Frank Oct 2 at 18:58
I think the OP has a bunch of SELECT statements of the form seen in the question; since we need to replace {{REPLACEME}} with something, it should be the identity. Removing the WHERE clause would be better, but that's not what the OP asked for. – Jacob Oct 3 at 21:30
vote up 2 vote down

I can only describe my solution with an example. The @AllRec is a parameter:

Declare @AllRec bit
set @AllRec = {0|1}  --as appropriate

SELECT * 
FROM table 
WHERE 
   (
       id = {{REPLACEME}}
       and @AllRec = 0
   ) OR (
       @AllRec = 1
   )

In this solution, if @AllRec is 1 then everything is returned, ignoring the id filter. If @AllRec is zero, then the id filter is applied and you get one row. You should be able to quickly adapt this to your current regex solution.

link|flag
vote up 1 vote down

Using the Regex-Replace option opens you up to SQL Injection attacks.

Assuming your language has support for parameterized queries, try this modified version of Jacob's answer:

SELECT * FROM table WHERE (id = @id OR @id IS NULL)

The catch is that you'll always have to provide the @id value.

link|flag
vote up 0 vote down

Not sure what language your using, and this code kind of scares me but...


var statement = "SELECT * FROM table";

If REPLACEME is not empty Then
   statement += " WHERE id = {{REPLACEME}}"
End If


link|flag
vote up 0 vote down
SELECT field1, field2
FROM dbo.yourTable
WHERE id = CASE WHEN @var IS NULL THEN
               id
           ELSE
               @var
           END
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.