複数行にまたがるSQLコマンドで問題がない場合は、oedoの 提案が最も簡単です:
INSERT INTO mytable (myfield) VALUES ('hi this is some text
and this is a linefeed.
and another');
SQLステートメントをすべて1行にまとめたほうがよいという状況があったので、 CONCAT_WS()
およびCHAR()
私のために働いた。
INSERT INTO mytable (myfield) VALUES (CONCAT_WS(CHAR(10 using utf8), 'hi this is some text', 'and this is a linefeed.', 'and another'));