ASKER
MySQL is an open source, relational database management system that runs as a server providing multi-user access to a number of databases. Acquired by Oracle in 2009, it is frequently used in combination with PHP installations, powering most of the WordPress installations.
TRUSTED BY
Adding a backslash character (\) before certain other characters forms a special command. For example:
\n "escapes" the literal letter "n" and instead is interpreted as a new line:
mysql> SELECT 'Paul nNeralich';
Paul nNeralich
mysql> SELECT 'Paul \nNeralich';
Paul
Neralich