improve benchmarks
[yosql.git] / yosql-benchmarks / yosql-benchmarks-common-scenarios / src / main / yosql / employee / findEmployeesWithMinSalary.sql
blobc3ff5fcdf40c756787d7aac676820373ca78b975
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 -- returningMode: ONE
10 -- parameters:
11 --   - name: salary
12 --     type: long
14 SELECT  *
15 FROM    employees
16 WHERE   salary >= :salary