Hi Team,
I have data in global table in below format:
I want to sum process time for each weekday separately in 1 calculated table using sql query. I am able to get results in separate calculated table using query SELECT SUM(ProcessTime) FROM GlobalTable WHERE Weekday=Mon. But I want to apply each weekday query in same query statement and get results in single calculated table row wise. Example
Weekday SUM(ProcessTime)
Mon 172
Tue 139
Wed 127
Thu 8
Fri 132
Sat 54
Sun 0
How this can be done?
Thank you!