Mysql erster Tag des Monats
-- Replace curdate() with your date column
SELECT curdate(),
DATE_SUB( curdate(), INTERVAL DAYOFMONTH(curdate())-1 DAY ) AS '1st of month';
VasteMonde