Jeśli nie masz nic przeciwko poleceniu SQL, które rozciąga się na wiele wierszy, to oedo sugestia jest najłatwiejsza:
INSERT INTO mytable (myfield) VALUES ('hi this is some text
and this is a linefeed.
and another');
Miałem właśnie sytuację, w której lepiej było mieć całą instrukcję SQL w jednym wierszu, więc stwierdziłem, że kombinacja CONCAT_WS()
i CHAR()
pracował dla mnie.
INSERT INTO mytable (myfield) VALUES (CONCAT_WS(CHAR(10 using utf8), 'hi this is some text', 'and this is a linefeed.', 'and another'));