Nested queries in SQL contain a subquery within another query. There are two types: independent nested queries where the inner query executes first and the outer query uses those results, and correlated nested queries where the inner query executes repeatedly for each row of the outer query. Common operators used in nested queries are IN, NOT IN, ALL, and ANY to check if column values match between the inner and outer query results.