I have a mysql query
    select count(*) as TotalCount,
           pd.Product_Modified_Date,
           psc.Product_Subcategory_Name,
           pd.Product_Image_URL
      from product_subcategory psc
inner join product_details pd on psc.Product_Subcategory_ID = pd.Product_Subcategory_Reference_ID
     where pd.Product_Status = 0 and
           psc.Product_Subcategory_Status = 0
  group by psc.Product_Subcategory_Name
  order by pd.Product_Modified_Date desc
In my product_details table have new image urls. But i could not get it by the above query.
How can i do it?

 
     
     
     
    