Hi @chuck DM,
Please try the following solution leveraging EXISTS.
-- DDL and sample data population, start
DECLARE @tbl TABLE (col1 INT, col2 INT);
INSERT INTO @tbl (col1, col2) VALUES
(2, 1),
(2, 3),
(2, 5),
(3, 4),
(5, 6);
-- DDL and sample data population, end
SELECT * FROM @tbl AS a
WHERE EXISTS (
SELECT 1 FROM @tbl AS b
WHERE b.col2 = 1
AND b.col1 = a.col1);