Posts by user15764 • 39 points
1 post
-
3
votes7
answers180098
viewsA: Format decimal places directly in the SQL command in Firebird
Convert Varchar to decimal, before you have to convert comma per point for the command to work: cast( replace(p.valor_venda,',','.') as decimal(18,6)) Do it the way it works above...…