Essentially I want to create a view in mySQL (phpmyAdmin) that queries a table called Equipment for a date range >=2018-12-1.
This is currently what I have, it is what is wrong with my syntax?
CREATE VIEW "Equipment_Date" AS SELECT * FROM "Equipment"
WHERE "Ship_Del_Date" >= 2018-12-1;