LAN
10-19-2001, 08:02 AM
The following sql statment is in dba that I have inherited to clean up and improve functionality. I cannot find any reference the "round" function. When I recreate this in separate dba it will not work but is working in this dba? Help
UPDATE TRADE SET TRADE.TRD_CUTS = round([trd_cash]/[trd_cpri],3)
WHERE (((TRADE.TRD_ACT)="B") AND ((TRADE.TRD_CERT)="D")) OR (((TRADE.TRD_ACT)="S") AND ((TRADE.TRD_CERT)="D"));
UPDATE TRADE SET TRADE.TRD_CUTS = round([trd_cash]/[trd_cpri],3)
WHERE (((TRADE.TRD_ACT)="B") AND ((TRADE.TRD_CERT)="D")) OR (((TRADE.TRD_ACT)="S") AND ((TRADE.TRD_CERT)="D"));