0
In the case of the use of query SELECT * FROM
, there is the possibility to bring all data from the table, but without ordering 1 or 2 columns?
Because in the case of a huge table, it’s much easier if there is this way (which I’m sure exists), than typing all the columns in the pattern SELECT w, x, y ,z...
There is already a similar question here. Why using "SELECT * FROM table" is bad?, How to select all fields except a few?, How to select all columns except one in particular?
– NoobSaibot
There’s no way, you just have to say the columns you really want. There is already another question here on the subject, and also an answer that explains why it is not good to ask
SELECT * FROM table
– Jefferson Quesado
No and it makes no difference because almost every API plays the columns in an associative matrix and you only use the columns you need.
– epx