यदि आप एक SQL कमांड के साथ ठीक हैं जो कई पंक्तियों में फैली हुई है, तो oedo's सुझाव सबसे आसान है:
INSERT INTO mytable (myfield) VALUES ('hi this is some text
and this is a linefeed.
and another');
मेरे पास बस एक ऐसी स्थिति थी जहां SQL कथन को एक पंक्ति में रखना बेहतर था, इसलिए मैंने पाया कि 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'));