jon24422531
Technical User
I have added another column to an existing table and defined it as MONEY. Default Value 0.00
Now when I either use QA to update the field in an existing record OR us EM and type directly into the column it stays at 0
Where am I going wrong?
Jonathan
Now when I either use QA to update the field in an existing record OR us EM and type directly into the column it stays at 0
Code:
update worklog..worklog Set EstimatedCost = '£12.00' where faultno = '303'
Select estimatedCost, * from worklog..worklog where faultno = '303'
/*This doesn't Work either */
update worklog..worklog Set EstimatedCost = £12.00 where faultno = '303'
Jonathan