Could someone tell me how to add a new line in a text that I enter in a MySql table?
I tried using the \'\\n\' in the line I entered with INSERT I
\'\\n\'
INSERT I
in an actual SQL query, you just add a newline
INSERT INTO table (text) VALUES ('hi this is some text and this is a linefeed. and another');