Expand my Community achievements bar.

Announcing the launch of new sub-community for Campaign Web UI to cater specifically to the needs of Campaign Web UI users!
SOLVED

Regarding Joins and group by

Avatar

Employee

 Hi, I am attaching a use case with my query. I want to target only those customers who have orders amount of more than 5000 and want to put group by on customerId. I have made an alias (amount * order quantity) inside enrichment and put the condition of totalamount>5000 inside split activity I am unable to put group by on customerId can you please guide me for this. Immediate help will be highly appreciated.

orderchangedusecase.png

1 Accepted Solution

Avatar

Correct answer by
Community Advisor

Hello @Mrityunjay ,

 

If you want to target if one order's total amount > 5000 then you can use like below.

 

1. Start your first query with the order table. First select all the order where ( amount * order quantity) >5000. 

Parvesh_Parmar_0-1654850319830.png

 

2. Then use change dimension activity to switch to recipient. It is important to select single records.

Parvesh_Parmar_1-1654850480711.png

 

3.  Your workflow will be look like below: 

Parvesh_Parmar_2-1654850589827.png

 

 

If you want to target, if total amount of all orders >5000 then you need to use group by. 

For this one you can do like below: 

 

1.  In order query activity select all orders, do not add any condition.

  

Parvesh_Parmar_3-1654850952140.png

 

2.  Add additional data.

Parvesh_Parmar_5-1654851519636.png

 

3.  Disable adding primary key:

Parvesh_Parmar_6-1654851579541.png

 

4. Add condition to select only records where total amount more than 5000.

Parvesh_Parmar_7-1654851675722.png

 

5. After that you would get the customers who total amount is greater than 5000. 

 

6. There is no targeting dimension in the output. If you want to add recipient dimension then use enrichment query: 

 

Parvesh_Parmar_8-1654851845917.png

 it will look like below: 

Parvesh_Parmar_9-1654851889116.png

 

 

Thanks.

Parvesh.

View solution in original post

4 Replies

Avatar

Correct answer by
Community Advisor

Hello @Mrityunjay ,

 

If you want to target if one order's total amount > 5000 then you can use like below.

 

1. Start your first query with the order table. First select all the order where ( amount * order quantity) >5000. 

Parvesh_Parmar_0-1654850319830.png

 

2. Then use change dimension activity to switch to recipient. It is important to select single records.

Parvesh_Parmar_1-1654850480711.png

 

3.  Your workflow will be look like below: 

Parvesh_Parmar_2-1654850589827.png

 

 

If you want to target, if total amount of all orders >5000 then you need to use group by. 

For this one you can do like below: 

 

1.  In order query activity select all orders, do not add any condition.

  

Parvesh_Parmar_3-1654850952140.png

 

2.  Add additional data.

Parvesh_Parmar_5-1654851519636.png

 

3.  Disable adding primary key:

Parvesh_Parmar_6-1654851579541.png

 

4. Add condition to select only records where total amount more than 5000.

Parvesh_Parmar_7-1654851675722.png

 

5. After that you would get the customers who total amount is greater than 5000. 

 

6. There is no targeting dimension in the output. If you want to add recipient dimension then use enrichment query: 

 

Parvesh_Parmar_8-1654851845917.png

 it will look like below: 

Parvesh_Parmar_9-1654851889116.png

 

 

Thanks.

Parvesh.

Avatar

Employee

Hi Parvesh,

 

Thank you so much for paving the path,

 

Sorry for the misunderstanding actually now I don't have to calculate the total amount(amount*quantity). The amount column has the total amount data. Now I have to sum the amount of all purchases by a particular customer and put group by on the customerId and if the customer purchase amount is greater than 5000 then he will receive a mail. Let me share with you the CSV file containing the data, It may clear the scenario.

 

Mrityunjay_0-1654856628757.png

 

So basically we have to sum the rows(TotalAmount) and group by CustomerId. Can you please help me with it?  Please let me know in case any further clarification is needed.

 

Avatar

Community Advisor

Hello @Mrityunjay

 

I have explained you two case in my last reply. 

You can use the second solution to do the sum of all orders and group by customer Id .

It start form the line "If you want to target, if total amount of all orders >5000 then you need to use group by. " from above reply. 

 

There i mentioned "sum(@amount*@orderquantity)", if you have total amount then you can do the sum of totoalAmount like sum(@totalAmount)

 

Thanks.

Parvesh.