This question is a extension of a previous question Simulation of CONNECT BY PRIOR of ORACLE in SQL SERVER.
From that I know how to do a CONNECT BY in SQL Server. In Oracle you can use a connect by easily in a sub query.
So in Oracle I can do select * from t1 where t1.id in (select from connect by query).
Is that also possible in SQL server? How?