IFNULL(参数1,参数2) 如果为空则返回参数2,不为空就返回参数1。 案例: <!--返回education表中最大id值,第一条就返回1--> SELECT IFNULL(max(id),1) from education