I have a query of MySQL like this-
SELECT avg('total_cost') FROM 'employee'
And then I am getting output like this-
1254589687.26587952
But I like to have a output like this-
1,25,45,89,687.26
So, a comma separator should be added and number should be rounded.
Is there any way in MySQL?
Thanks for helping.