Posts by Rafael Vilaça • 29 points
1 post
-
2
votes7
answers180098
viewsA: Format decimal places directly in the SQL command in Firebird
Example in the case of a VIEW that I created: ALTER VIEW vw_Saldos_Clientes as Select C.ID_Cliente as ID, C.Nome_Cliente as Cliente, format(C.Saldo, 'C', 'pt-br') as Saldo FROM dbo.tbl_Clientes C…