Thay thế @your_list, Your_table và các giá trị bằng nội dung thực.
DECLARE @your_list TABLE (list varchar(25))
INSERT into @your_list
VALUES ('value1'),('value2376')
SELECT *
FROM your_table
WHERE your_column in ( select list from @your_list )
Câu lệnh select abowe sẽ thực hiện tương tự như:
SELECT *
FROM your_table
WHERE your_column in ('value','value2376' )