Here’s table I’ve got:
projects(p_id,p_name,p_deadline)
p_deadline is defined in MySQL as DATE.
How to write a query that returns only projects with p_deadline date that is newer than NOW()? I don’t want to display projects that passed deadline date.
1 Answer