Right i'm ill with the Flu so not at class today so i'm just doing my work from home.

Would anyone able to tell me how to make two calculations in the same query example to add a 3% bonus to a monthly Salary using the Annual salary. Would anyone be able to tweak this to help me.

I have done the multiplication as 1.03 but now I need to divide it by 12 but im unsure as how to do this as it doesn't mention it in the notes

SELECT [first name], surname, (salary * 1.03) AS Monthly_Wage
FROM Workers
WHERE town = "Bonnyrigg"

Thank you very much if you can help.