Mysql
 sql >> Datenbank >  >> RDS >> Mysql

Datentyp des SUM-Ergebnisses in MySQL

Dies ist nur eine Vermutung, aber vielleicht zwingt das Umwandeln in eine Ganzzahl MySQL dazu, immer zu sagen, dass es sich um eine Ganzzahl handelt.

SELECT CAST(SUM(price) AS SIGNED) FROM cakes WHERE ingredient = 'marshmallows';