I am using Ms Access database, I have a query which gets the 123,4567 from 1234567. to do so I use
select format(Price,'##,###')as Price from tbl_sald
Now I want to do the same in Sql server 2000 view where it does not accept the format function in the sql view.
please help me and solve my problem
select format(Price,'##,###')as Price from tbl_sald
Now I want to do the same in Sql server 2000 view where it does not accept the format function in the sql view.
please help me and solve my problem