How to disable the default ascending order of output in a MySQL query and the output must appear as it was arranged in the SQL query somewhere?
When I query something like this one...
select postalcode, customername, contactname, * from customers
where postalcode in ('13008','12209','05022')
...the output will look like this in the picture below.
How to make a query in such a way that the output will now look like in the picture below?
Thank you all!