Sign in
apache
/
drill-test-framework
/
b5ed55188c294aa172ccc7d30e7981884fedc8f0
/
.
/
framework
/
resources
/
Functional
/
subqueries
/
subquery_in_select
/
where_less.sql
blob: 57a3bf70917f19b9ae3aaa9bbb658785d53661b8 [
file
] [
log
] [
blame
]
SELECT
m
.
employee_id
,
(
SELECT
MIN
(
sub
.
full_name
)
as
min_full_name
FROM
cp
.`
employee
.
json
`
as
sub
WHERE
sub
.
employee_id
<
10
)
as
min_full_name
FROM
cp
.`
employee
.
json
`
as
m
WHERE
m
.
gender
LIKE
'F'
LIMIT
5
;