You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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;
The text was updated successfully, but these errors were encountered:
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:The text was updated successfully, but these errors were encountered: