Is there a way I can select all but a couple of columns in a select query.
Basically I want to do some thing like..
select (* -(DW_INSERT_DTTM,DW_INSERT_DTTM)) from tableA
MINUS
select (* -(DW_INSERT_DTTM,DW_INSERT_DTTM)) from tableB
and vice versa
Its easy to do a minus of two tables when the number of columns in a table are small but it gets really time consuming when columns are plenty. Also the dw_insert_dttm and dw_update_dttm times for tableA are different compared to tableB
Does anybody knows a workaround?
Thanks in advance.
bcd
Basically I want to do some thing like..
select (* -(DW_INSERT_DTTM,DW_INSERT_DTTM)) from tableA
MINUS
select (* -(DW_INSERT_DTTM,DW_INSERT_DTTM)) from tableB
and vice versa
Its easy to do a minus of two tables when the number of columns in a table are small but it gets really time consuming when columns are plenty. Also the dw_insert_dttm and dw_update_dttm times for tableA are different compared to tableB
Does anybody knows a workaround?
Thanks in advance.
bcd