I'm trying to write something like this.
SELECT x,
,y
,(Select z from innerTable where innerTable.this = outterTable.that
FROM outterTable
where blahblah
Basically, this particular column I'd like to map to a value in another table. But when I try this, SQLDeveloper just prints out my Select statement as a column heading with nulls below it.