SELECT count(*) FROM table A
let's say the result is 8689. How can I convert it to 8'689 on the SQL Server?
SELECT count(*) FROM table A
let's say the result is 8689. How can I convert it to 8'689 on the SQL Server?
Copyright © 2021 Jogjafile Inc.
Try This way:-
and be sure you really need this approach, formatting the application is the usual and best as SqlZim said.
UPDATE:-
for setting the separator on top, Try the next:-