Answers for "postgresql cast column type"

SQL
8

postgresql change column type

ALTER TABLE assets ALTER COLUMN name TYPE VARCHAR;
Posted by: Guest on May-26-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