- Log in to post comments
User bio
404 bio not found
Member since Feb 21, 2016
Posts:
Replies:
Hi, Evgeny
Thanks for your comment.
I have slightly changed the content based on your suggestion.
- Log in to post comments
Hi, Ben
Thank you for your comment.
I have slightly rewritten the content based on your suggestion
- Log in to post comments
Open Exchange applications:
Certifications & Credly badges:
Hiroshi has no Certifications & Credly badges yet.
Followers:
Following:
Hiroshi has not followed anybody yet.
Thank you for pointing that out.
My explanation was incorrect.
In reality, the issue was that the values returned as a result of the following `Group By` query were in uppercase, causing them to mismatch with the matching data prepared on the Python side.
SELECT revenutype, sum(total) from xxx group by revenuetype
# Revenue types and their row positions in RevenueByRevenueType
REVENUE_ROWS = {
‘License’: 5,
‘Maintenance’: 6,
‘Subscription’: 7,
‘Training’: 8,
}