cancel
Showing results for 
Search instead for 
Did you mean: 

Why SAP HANA has come with the concept of Projection?

Former Member
0 Kudos

Hi All,

What's the main purpose of Projection in HANA and in what scenerio it is used? How different it is with Aggregation?

Thanks,

Pradeep

Accepted Solutions (0)

Answers (3)

Answers (3)

Former Member
0 Kudos

Thank you very much Abani and Vivek. it helped me very much.

Regards,

Pradeep

vivekbhoj
Active Contributor
0 Kudos

Hi Pradeep,


You can also check the below thread:


Regards,

Vivek

abanip
Employee
Employee
0 Kudos

Consider Projection as simple SELECT statement like

SELECT a, b FROM table_x where c = xx

where as Aggregation is like

SELECT a, SUM(d), MAX(e), COUNT(e) FROM table_x GROUP BY a

So a Projection node in HANA let you select a list of fields, you can also apply appropriate filters. An Aggregation node in HANA will let you compute the aggregate functions (SUM, MIN, MAX, AVG, COUNT etc).

Regards

Abani