Answers for "postgresql cast to int"

SQL
3

postgresql cast

SELECT '100'::INTEGER;
SELECT CAST ('100' AS INTEGER);
Posted by: Guest on October-12-2020
1

postgres cast as decimal

cast(tableA.charge_amt AS decimal(8,2)) AS charge_amt
Posted by: Guest on October-04-2021

Code answers related to "SQL"

Browse Popular Code Answers by Language