skip to Main Content

finding max price with date – Mysql

I am new to SQL. in my query, I need max closeprice(column-name) with date (column-name). every month of that year. I created this query: Select max(close), date from commodity where commodity ='rice' and location= 'pune' year(date) ='2022' group by month(date)…

VIEW QUESTION
Back To Top
Search