Sometimes it's nice to select * from table but omit one of the columns. To do this currently, you have to then explicitly list each column name. How about something like this:
select .all_except(picture) from staff;
select /* all except picture */ from staff;
select *.except(picture) from staff;
select * except picture from staff;
Sometimes it's nice to
select * from table
but omit one of the columns. To do this currently, you have to then explicitly list each column name. How about something like this: