In python, one can use \"\"\" to wrap long MySQL statements. For example,
sql = \"\"\"CREATE TABLE EMPLOYEE ( FIRST_NAME CHAR(20) NOT NULL, L
For the future large SQL statments, one tip is to use functions or procedures in MySQL, and then call it in one line:
SQL
var sql = select * from getEmployee(); // function getEmployee returns the query