I have data in my sql database like 645.000 and i need to format it to include currency symbols e.g., $645.000
645.000
$645.000
How can I achieve this in SQL?>
SQL server has no control over how numbers are displayed in your client application. Modify the application settings, Windows control panel or your program code to change the way numbers are displayed.