Mar 10, 2001 #1 snello Programmer Mar 10, 2001 1 US My SQL statement creates a recordset that includes an aggregate function on one attribute, how can I set the precision of the result? The statement is included within an ASP page using VBScript as the server side language. Any Help???
My SQL statement creates a recordset that includes an aggregate function on one attribute, how can I set the precision of the result? The statement is included within an ASP page using VBScript as the server side language. Any Help???
Mar 12, 2001 #2 MikeJones Programmer Nov 1, 2000 259 GB If you have a field that's overflowing to to many DP then I'd use round select round(1.111111,2) from dual returns 1.11 Upvote 0 Downvote
If you have a field that's overflowing to to many DP then I'd use round select round(1.111111,2) from dual returns 1.11