* ProblemWrite a solution to select the product id, year, quantity, and price for the first year of every product sold.Return the resulting table in any order.* Solution (Success)# Write your MySQL query statement belowwith ProductFirstYear as( select product_id, min(year) as year from Sales Group by 1)select Sales.product_id, ProductFirstYear.year as first_year, Sales.quantity,..