I need to achieve the results by providing multiple declaration values. How can it be done?
DECLARE @ID INT
SET @ID = 1 --instead I need to provide multiple values like @ID = 1,2,3
SELECT C.Name, C.EmployeeID
FROM Cases c
WHERE C.EmployeeID = @ID
Table
Name | ID
-------+---------
A 1
B 2
C 3
D 4
E 5
F 6
And the results should be:
A 1
B 2
C 3