Hi SQL'ers, I cannot get the ROUND function to work in Query Analyzer. It is still showing 4 decimal places.
select title, round(price,2) as MyPrice, advance, type
from Titles
where (price > 15.00 or advance > 5000.00) and type = 'business'
How can I show only 2 decimal places, price is defined as money in SQL2000.
Thanks much
Trudye
select title, round(price,2) as MyPrice, advance, type
from Titles
where (price > 15.00 or advance > 5000.00) and type = 'business'
How can I show only 2 decimal places, price is defined as money in SQL2000.
Thanks much
Trudye