Just started playing around with sql and I ran into a problem. I have a very simple query
SELECT JobRecords.JobNumber, JobRecords.Color_Name,
UnitCost*QtyUsed
AS
[Total Ink Cost per Line]
FROM JobRecords;
I want to CAST the results of the field total ink cost per line as money but I can't figure out the right syntax to do so.