Can any tell me if there is a way to SELECT all the columns in a table and leave some out.
eg if I have a table with 40 columns and I want to SELECT them all apart from 2 do I really have to write the sql mentioning each column in turn ?
SELECT * FORM table_name .....but not col1 and col2.
would be a great mysql command but I cannot seem to find out if one exists or not.
Thank-you
Ryan