Prompt with the request:
SELECT DateTimeOp, SUM(Mass) FROM DataScales WHERE (DateTimeOp BETWEEN '2018.11.17 00:00' AND '2018.11.30 13:55') GROUP BY DAY(DateTimeOp) I need to display 2 columns: date and summamassy.
Source: https://ru.stackoverflow.com/questions/913659/
All Articles
код SELECT SUM(Mass) FROM DataScales WHERE (DateTimeOp BETWEEN '2018.11.17 00:00' AND '2018.11.30 13:55') GROUP BY DAY(DateTimeOp)then everything works, but I need a column with the date to be output - Ivan Zhilnikov