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
Yes, though it can be high I/O depending on the table here is a workaround I found for it.
SELECT * INTO #temp FROM table ALTER TABLE #temp DROP COlUMN column_name SELECT * FROM #temp