Log in

View Full Version : exclusive field list


Jakeman
05-16-2005, 05:48 AM
Is there a syntax for selecting all fields except those specified?


SELECT !(field1, field2)
FROM table


You get the idea...

TIA

cinq
05-16-2005, 05:54 AM
/me subscribes to thread
I checked this for the longest time and could not find a solution.

Marco van Herwaarden
05-16-2005, 09:18 AM
Simple answer (if i understand your question correct): No

And what would be the reason for wanting this? Just 1 or 2 fields less to pull from the database without writing out all the fieldnames? This could be only really usefull if these fields contain large amounts of data. You could write a function that does so, but that would probably mean extra queries to create the list, so kinda useless i think.

sabret00the
05-16-2005, 09:53 AM
couldn't you SELECT * NOT_IN(xx,xx)

maybe not, but as marco said, you'd have to either just select the fields or select * and then use php just to grab the ones you want.

Zero Tolerance
05-17-2005, 07:51 AM
I wondered the same thing the other week, when one of vb's queries didn't put a parent onto a field in one of the left joined tables, which caused collision for the table i joined (same field names), but yeah, it can't be done.

Be nice if future mySQL versions had that kind of feature though :p

- Zero Tolerance

Jakeman
05-18-2005, 05:06 PM
...This could be only really usefull if these fields contain large amounts of data...

attachment.filedata

Marco van Herwaarden
05-18-2005, 06:55 PM
Ok, you made your point. :)

Well the only way i could think of was to use a custom function to dynamyc generate a field list for a given table, and then to return the list of fields, with the exception of the excluded ones.

But it would require at least queries to process. This could be easilly written as a PHP function to be used in the sources. With some effort it might even be doable in SQL, but doubt that would be the optimal solution.

Marco van Herwaarden
05-18-2005, 06:58 PM
If you could use only MySQL5, then there would be some other options, but i doubt that is something you can force now.

Jakeman
05-18-2005, 11:07 PM
okie thx ;)