1) I would like to return a price column as currency $10.50 format. How can I do it in my select statement:
select itemnmbr, price from item
2) would this be faster than doing it in the html using string.format("c", price) after returning the price as such from the sql table
Thanks
Thanks
select itemnmbr, price from item
answer
select itemnmbr, cast(price as decimal(10,2)) price from item