Suppose
SELECT * FROM some_tbl;
is same as
SELECT col1, col2, col3 FROM some_tbl;
Then how can I get the data from some_tbl without column name?
The problem is I don't know the column names...
Even I can't use information_schema in security reason...
Somebody said to me
You can get data without specific column name.
But I have any idea about it.