I'm making 4 assumptions here:
- You have SQL-Server 2008 or later (tag is only sql-server)
- Your criteria will always be in the format
name = Y and value >=10 and value <= 25
- Your values column is actually an int column (based on your where
clause)
- Your separate criteria should be separated by OR not and (since in
your example you have
WHERE (Name = 'x' ..) AND (Name = 'y'...)
which will never evaluate to true)
Assuming the above is true then you can use table valued parameters. The first step would be to create your parameter:
CREATE TYPE dbo.TableFilter AS TABLE
( Name VARCHAR(50),
LowerValue INT,
UpperValue INT
);
Then you can create a procedure to get your filtered results
CREATE PROCEDURE dbo.CustomTableFilter @Filter dbo.TableFilter READONLY
AS
SELECT T.*
FROM T
WHERE EXISTS
( SELECT 1
FROM @Filter f
WHERE T.Name = f.Name
AND T.Value >= f.LowerValue
AND T.Value <= f.UpperValue
)
Then you can call your procedure using something like:
DECLARE @Filter dbo.TableFilter;
INSERT @Filter VALUES ('X', 1, 5), ('Y', 10, 25);
EXECUTE dbo.CustomTableFilter @Filter;
Example on SQL Fiddle