Convenient way to wrap long SQL statements in javascript

前端 未结 5 1501
别那么骄傲
别那么骄傲 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:19

    For the future large SQL statments, one tip is to use functions or procedures in MySQL, and then call it in one line:

    var sql = select * from getEmployee(); // function getEmployee returns the query

提交回复
热议问题