Are there any performance issues of using \"IN\" keyword in SQL statements in places where we can use JOIN?
SELECT xxx FROM xxx WHERE ID IN (SELECT Id FROM x
As you can read here, JOINS are faster than sub-selects.