I\'m a novice. I have a employee table with a column specifying the joining date and I want to retrieve the list of employees who have joined in the last 3 months. I understand
I would try this first
select * from employee where month(current_date)-3 = month(joining_date)