benchmarks & wording
[yosql.git] / yosql-benchmarks / yosql-benchmarks-common-scenarios / src / main / yosql / employee / insertEmployee.sql
blob7fbb26d1952a69e5e86cec4893eef599a45cd39b
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 --
9 -- parameters:
10 --   - name: department
11 --     type: java.lang.String
12 --   - name: name
13 --     type: java.lang.String
14 --   - name: surname
15 --     type: java.lang.String
16 --   - name: email
17 --     type: java.lang.String
18 --   - name: salary
19 --     type: java.lang.Long
21 INSERT INTO employees (department_pid, name, surname, email, salary)
22 VALUES (:department, :name, :surname, :email, :salary)