Mysql 如何优化这个sql

Mysql 如何优化这个sql,mysql,sql,optimization,triggers,Mysql,Sql,Optimization,Triggers,这是一个触发器: 如何优化:amount=if(isnull(amount),0,amount)+1 谢谢相当干净了: amount=IFNULL(amount,0)+1 amount=IFNULL(amount,0)+1

这是一个触发器:

如何优化:
amount=if(isnull(amount),0,amount)+1

谢谢

相当干净了:

amount=IFNULL(amount,0)+1
amount=IFNULL(amount,0)+1