[Solved] Mysql: How do I subtract a percentage from a numberKiratMarch 6, 2023Solved Try this: SELECT amount - (amount * discount_percentage / 100) FROM tableA; 0 solved Mysql: How do I subtract a percentage from a number # mysql# select# sql