Sign in
apache
/
drill-test-framework
/
9324c6675efda54616532025bc4b6555370790f6
/
.
/
framework
/
resources
/
Functional
/
orderby
/
orderby4.q
blob: 9b71cceacb266cfe08953fff949b624ae65898f0 [
file
] [
log
] [
blame
]
select
c_row
,
c_groupby
,
cast
(
c_decimal18
as
decimal
(
18
,
4
))
from
data
where
c_row
>
15
order
by
c_groupby asc
,
cast
(
c_decimal18
as
decimal
(
18
,
4
))
desc
;