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
Would a View work better in this case?
CREATE VIEW vwTable as SELECT col1 , col2 , col3 , col.. , col53 FROM table