79577244

Date: 2025-04-16 13:00:31
Score: 0.5
Natty:
Report link

You're comparing the sale_month, which is a number (from EXTRACT(MONTH FROM sale_date)) to a string ('April'). That will not work - which is likely why you're getting no rows.

Replace 'April' with the numerical value for April, which is 4. i.e.

WHERE m.sale_month = 4;

Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Deepak Saini