MySQL Forums
Forum List  »  German

Sortierter Output mit Überschrift
Posted by: Gottfried Faaß
Date: May 19, 2023 12:23AM

Hallo!

Ich habe eine Abfrage, die eine CSV Datei mit Überschrift erzeugen soll.

SELECT
'productId',
'stock',
'price',
'higher_price_x',
'differenz'
UNION
SELECT
productId,
stock,
price,
higher_price_x,
differenz
FROM phase4_view
order BY differenz + 0 DESC
INTO OUTFILE 'C:/xxx/xxx.csv'
FIELDS ENCLOSED BY '"' TERMINATED BY ';' ESCAPED BY '"'
LINES TERMINATED BY '\r\n';

Das Problem ist, daß die Kopfzeile an das Ende der Abfrage sortiert wird.

order BY a + 0 DESC ist, weil die Spalte numerisch sortiert werden soll,
nicht natürlich

Wie erzeuge ich eine CSV Datei mit Feldnamen in der Kopfzeile, wenn die
Liste absteigend numerisch sortiert sein soll?

Options: ReplyQuote


Subject
Views
Written By
Posted
Sortierter Output mit Überschrift
349
May 19, 2023 12:23AM


Sorry, you can't reply to this topic. It has been closed.

Content reproduced on this site is the property of the respective copyright holders. It is not reviewed in advance by Oracle and does not necessarily represent the opinion of Oracle or any other party.