Convenient way to wrap long SQL statements in javascript

前端 未结 5 1572
别那么骄傲
别那么骄傲 2021-01-26 09:35

In python, one can use \"\"\" to wrap long MySQL statements. For example,

sql = \"\"\"CREATE TABLE EMPLOYEE (
         FIRST_NAME  CHAR(20) NOT NULL,
         L         


        
5条回答
  •  谎友^
    谎友^ (楼主)
    2021-01-26 10:23

    You can use a backslash \ at the end of the line to spread the string over more than one line.

    var sql = "CREATE TABLE EMPLOYEE ( \
               FIRST_NAME  CHAR(20) NOT NULL, \
               LAST_NAME  CHAR(20), \
               AGE INT, \
               SEX CHAR(1), \
               INCOME FLOAT )";
    document.write(sql);

提交回复
热议问题