Possible Duplicate:
Select all columns except one in MySQL?
Hello,
SELECT field1, field2, field3 FROM table WHERE 1
this query will select field1
, field2
, filed3
How to selected all fields except field1
? Of course, we can tell to selected field2 and field3, but I'm talking about situation when there are a lot of such fields.
Thank you.