Export sms_messages

With
fwconsole m
show tables;
select * from sms_messages;

I can see all text messages. How do I export them? I need them for a court in csv format.

Always export to /tmp then feel free to move the fille

Thank you very much! I used

SELECT *
INTO OUTFILE ‘/tmp/sms.csv’
FIELDS TERMINATED BY ‘,’
ENCLOSED BY ‘"’
ESCAPED BY ‘\’
LINES TERMINATED BY ‘\n’
FROM sms_messages;

I just don’t understand why the file ended up in

/tmp/systemd-private-af5522fe42aa4797b085409c6fe8d693-mariadb.service-c2bGlq/tmp

This topic was automatically closed 31 days after the last reply. New replies are no longer allowed.