0 By Nithya Vasudevan In Data Manipulation Language (DML)Posted October 18, 2016SubqueriesA subquery is a SELECT statement within another statement. Here is an example of a subquery: SELECT * FROM t1 WHERE column1 = (SELECT column1 FROM t2); The main advantages of subqueries are: They [...] READ MORE