Sign in
apache
/
hive
/
refs/heads/HiveAggregateReduceFunctionsRule
/
.
/
hplsql
/
src
/
test
/
queries
/
db
/
for.sql
blob: 19dac9af79251ea9459824ff79c65b2ea9a0d283 [
file
] [
log
] [
blame
]
for
item
in
(
select
code
from
sample_07 limit
10
)
loop
print
(
cast
(
item
.
code
as
varchar2
(
100
))+
' aa'
)
end
loop
;