Mysql
 sql >> Datenbank >  >> RDS >> Mysql

sql-maven-plugin mit mehreren Trennzeichen

Sie können Ihren delimeterType im Konfigurationsblock auf "row" setzen.

<configuration>
...
   <delimiterType>row</delimiterType>
...
</configuration>

Trennzeichentyp

Weitere Informationen finden Sie unter http://mojo.codehaus.org/ sql-maven-plugin/execute-mojo.html#delimiterType

Zum Beispiel:create-proc.sql

CREATE PROCEDURE ADD_BOOK (IN title VARCHAR(100))
BEGIN
   -- your sql code 
   INSERT INTO Book (title) VALUES (title);
END
; -- this means the end of the sql command