You can't use multiple, isolated SELECTS as you are trying to do. You can only use a single SELECT. If you need columns from multiple tables, then you need to join those tables into a singular SELECT.

- Chris