I've been searching and I can not find it, but I've found that in a mysql query, I need to select almost all the content minus 3 elements, the point is that there are almost 20 columns. I know that php can not show those fields, but the output is made by php and I transform it into a json output and I wanted to save myself a possible php code that can be saved from the mysql base.
I have chosen to select field by field, but Can it be done in a more elegant way?
An example:
SELECT b.gorro , b.pierna_derecha , b.pierna_izquierda , b.brazo_derecho , b.brazo.izquierdo ,...
FROM batman AS b
In mysql there is a way to select all but a few fields in particular?