Answers for "cast value as text postgres"

SQL
1

postgresql convert text to float

select cast('132342' as double precision);
Posted by: Guest on December-23-2020
3

postgresql cast

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

Code answers related to "SQL"

Browse Popular Code Answers by Language