Anybody know of sql statement where I can select all the columns except one or two. I.e. Instead of this: select a,b,c,d,e,f,g,h,i,j,k,l,m,n from foo I could do this: select *, except m,n from foo possible? I'm using sqlserver and mysql