How to perform a multiply operation in a mysql query?
If my request looks like this:
"SELECT registration.hosteladmissionno,
registration.student_name,
registration.semester,
student_month.hosteladmissionno,
student_month.student_name,
student_month.semester,
messexp.billmonth,messexp.billyear ,messexp.perdayrate,student_month.days_mess
FROM registration,
student_month ,messexp,blockexp
WHERE student_month.hosteladmissionno = registration.hosteladmissionno
";
How to perform the multiplication operation in this query? let's say btw days_mess multiplication operation and
source
share