LenardD
Both of the above suggestions will work, but the former is not expandable automatically, in that it relies on knowledge of the table and column names for each select statement.
hmckillop's answer is exactly what you need in respect of any table and any column name, and I have starred it, appropriately.
The only thing I would point out is that there is no fault tolorance built in, in that if the table or column does not exist then it will return an error.
You could expand this sp to include a check against sysobjects table in the given db, and ensure the table exists, and then check the syscolumns table for the given column, based on the object id of the table.
If you need that code, just ask ...
Logicalman