improve benchmarks
[yosql.git] / yosql-benchmarks / yosql-benchmarks-common-scenarios / src / main / yosql / employee / insertEmployee.sql
blob519d8e0d37a9806160bf46cf54cf27da0a0570ed
1 /*
2  * This file is part of yosql. It is subject to the license terms in the LICENSE file found in the top-level
3  * directory of this distribution and at http://creativecommons.org/publicdomain/zero/1.0/. No part of yosql,
4  * including this file, may be copied, modified, propagated, or distributed except according to the terms contained
5  * in the LICENSE file.
6  */
8 -- parameters:
9 --   - name: department
10 --     type: long
11 --   - name: name
12 --     type: java.lang.String
13 --   - name: surname
14 --     type: java.lang.String
15 --   - name: email
16 --     type: java.lang.String
17 --   - name: salary
18 --     type: long
20 INSERT INTO employees (department_pid, name, surname, email, salary)
21 VALUES (:department, :name, :surname, :email, :salary)