I'm getting error again and again. Could anyone please help me with that. Any help would be much appreciated. Here is my code:
Solved! Go to Solution.
There’s a syntax mistake here. On line 8 of your query you have a missing closing bracket at the beginning of the line. It should be ) AS total_orders. Or you could move the ) to the end of line 7 depending on your styling.
This is because you have an open bracket starting on line 5 that needs to be closed before ending the calculation.
There’s a syntax mistake here. On line 8 of your query you have a missing closing bracket at the beginning of the line. It should be ) AS total_orders. Or you could move the ) to the end of line 7 depending on your styling.
This is because you have an open bracket starting on line 5 that needs to be closed before ending the calculation.