Is there a clause that excludes colums from the select statement....
Lets say I want to select several columns
the select statements looks like this
select c1,c2,c3,c4,c5,c6,c7,c8,c9,c10
from table1
theese columns c1,c2,c3,c4,c5,c6,c7,c8,c9,c10 plus c11
are all columns of the table "Table1"
is there a way i could say somethig like this
Select *, excluding c11
from table1
Lets say I want to select several columns
the select statements looks like this
select c1,c2,c3,c4,c5,c6,c7,c8,c9,c10
from table1
theese columns c1,c2,c3,c4,c5,c6,c7,c8,c9,c10 plus c11
are all columns of the table "Table1"
is there a way i could say somethig like this
Select *, excluding c11
from table1