Possible Duplicate:
SQL exclude a column using SELECT * [except columnA] FROM tableA?
Is selecting all columns except one column possible??
here is all column names: id, name, address, age
SELECT id, name, address from TBLUser
I don't want to use this select statement because the number of columns of my tables are different to each other.