Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
297 views
in Technique[技术] by (71.8m points)

mysql - C# SQL Retrive monthly cost from table and display sum by month in chart or datatable

I have created a winform application which also has a form to save project records as

    proj_id | client_id  | proj_name | proj_start |  proj_end  | proj_cost
    -----------------------------------------------------------------------------
        1   |    11      |   x       | 2020-10-10 | 2021-10-23 |   50000
        2   |    12      |   Y       | 2020-11-16 | 2021-08-25 |   10000
        3   |    01      |   Z       | 2021-02-01 | 2022-01-18 |   25000

I am required to get the cost by each month and depict it graphically. I was able to figure a query to get the monthly cost of each project with

SELECT *,proj_cost/PERIOD_DIFF( EXTRACT(YEAR_MONTH FROM proj_end), EXTRACT(YEAR_MONTH FROM proj_start)) AS month_cost FROM project ORDER BY proj_id

the monthly cost of each project are

  • project x = 3846 (rounded)
  • project y = 1000
  • project z = 2273 (rounded)

How can I depict this in a monthly way. for example with the records I have displayed above if user input to see cost from 2020-10 to 2021-02 it would output something like

2020-10 = SUM(x)
2020-11 = SUM(x,y)
2020-12 = SUM(x,y)
2021-01 = SUM(x,y)
2021-02 = SUM(x,y,z)

I would like to say sorry in advance if there is anything wrong as this is my first question and I am not really sure how things work here

question from:https://stackoverflow.com/questions/66051462/c-sharp-sql-retrive-monthly-cost-from-table-and-display-sum-by-month-in-chart-or

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Reply

0 votes
by (71.8m points)
Waitting for answers

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
OGeek|极客中国-欢迎来到极客的世界,一个免费开放的程序员编程交流平台!开放,进步,分享!让技术改变生活,让极客改变未来! Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...