Sign in
apache
/
hive
/
trunk
/
.
/
ql
/
src
/
test
/
queries
/
clientpositive
/
notable_alias3.q
blob: aa79674409d2d37a59691c29d0ccd92f6c097ec0 [
file
] [
log
] [
blame
]
CREATE TABLE dest1
(
c
string
,
key INT
,
value DOUBLE
)
STORED AS TEXTFILE
;
FROM src
INSERT OVERWRITE TABLE dest1 SELECT
'1234'
,
src
.
key
,
sum
(
src
.
value
)
WHERE src
.
key
<
100
group
by
key
;