summaryrefslogtreecommitdiff
path: root/spring-jdbc/src/test/resources/org/springframework/jdbc/datasource/init/test-data-with-multi-line-comments.sql
blob: 5886bd002e028e352e434d68907d8973cfc2376c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
/* This is a multi line comment
 * The next comment line has no text 

 * The next comment line starts with a space.
 *  x, y, z... 
 */

INSERT INTO users(first_name, last_name) VALUES('Juergen', 'Hoeller');
-- This is also a comment.
/* 
 * Let's add another comment
 * that covers multiple lines
 */INSERT INTO
users(first_name, last_name)
VALUES( 'Sam'     -- first_name
      , 'Brannen' -- last_name
);--