Advantage Error Guide
Problem: A sub-query incorrectly specified more than one column in the SELECT list. For example, "SELECT field1, field2 FROM table1 WHERE field1 IN (SELECT * FROM table2)" is not valid if table2 contains more than one field.
Solution: Change the sub-query so that it selects only a single column.