I have a table that has over 50 columns and I'm trying to select all of them with the exception of one column I want to add a case statement to it, I tried doing
Select A.*,Case when COLUMN1 THEN end as XX from TABLE A,
But this will result in COLUMN1 repeated twice, in the * result and in the case condition, is there a way to exclude this column from the select * results? or do I have to type each each column name and add the case statement to that specific column?
Your help is much appreciated thank you.