I\'m trying to use a select statement to get all of the columns from a certain MySQL table except one. Is there a simple way to do this?
EDIT: There are 53 columns i
You could use DESCRIBE my_table and use the results of that to generate the SELECT statement dynamically.