算术运算 算术运算 相加 相减 相乘/ 相除% 取余/取模 -- 查询出所有欠费的学生名字和欠费额度SELECT stu_name, introduce_fee - fee_payed FROM `sl_stu` WHERE (introduce_fee - fee_payed) > 0;