Hi
I hope somebody can help. Currently we are using a SQL query to show euro prices on our website in addition to our current GBP and USD prices. We are then using a further query to show the euro price to two significant decimal places. The query we are using for this is:
UPDATE productsTable SET productAux1 = Round (productAux1,2);
The downside of this is that if we have a price of, say, EUR11.50 it is unfortunately only shown as EUR11.5 when using the above query.
Does anyone know of a SQL query similar to the above that I can use to force the display to two insignificant places so we end up with EUR11.50 etc?
Many thanks!
Andy
I hope somebody can help. Currently we are using a SQL query to show euro prices on our website in addition to our current GBP and USD prices. We are then using a further query to show the euro price to two significant decimal places. The query we are using for this is:
UPDATE productsTable SET productAux1 = Round (productAux1,2);
The downside of this is that if we have a price of, say, EUR11.50 it is unfortunately only shown as EUR11.5 when using the above query.
Does anyone know of a SQL query similar to the above that I can use to force the display to two insignificant places so we end up with EUR11.50 etc?
Many thanks!
Andy