Sign in
apache
/
hive
/
maven
/
.
/
ql
/
src
/
test
/
queries
/
clientnegative
/
subquery_exists_implicit_gby.q
blob: 9013df6f938dc307c6cc629cf6971bbba0a64272 [
file
] [
log
] [
blame
]
select
*
from
src b
where
exists
(
select
count
(*)
from
src a
where
b
.
value
=
a
.
value
and
a
.
key
=
b
.
key
and
a
.
value
>
'val_9'
)
;