#获取当前日期
select curdate();
#获取当月最后一天
select last_day(curdate());
#获取本月的第一天
select date_add(curdate(),interval -day(curdate())+1