Quantcast
Channel: SCN : Discussion List - SAP HANA and In-Memory Computing
Viewing all articles
Browse latest Browse all 5653

Using "AS" for subquery in SAP HANA SQL

$
0
0

Hi,

I'd want to use "AS" to create a temp table for the result of a subquery. But the query can not be executed.How can I fix this error?

Do I need to create a view ?

 

 

select

  c_count, count(*) as custdist

from (

  select

  c_custkey,

  count(o_orderkey)

  from

  customer left outer join orders on

  c_custkey = o_custkey

  and o_comment not like '%special%requests%'

  group by

  c_custkey

  )as c_orders (c_custkey,c_count)

group by

  c_count

order by

  custdist desc,

  c_count desc;



error2.PNG

Many thanks in advance!

Naomy




Viewing all articles
Browse latest Browse all 5653

Trending Articles



<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>