- Posts: 1
- Thank you received: 0
How can i remove some of the zeros and display the dollar sign
Please Log in or Create an account to join the conversation.
Hi,
you can create SQL view in phpMyAdmin with the code below:
CREATE VIEW YourView AS
SELECT concat(format(YourPrice,2),' €') As Price
FROM YourTable
Please Log in or Create an account to join the conversation.