Answers for "postgres change column type string to integer"

0

postgres change column type string to integer

ALTER TABLE the_table ALTER COLUMN col_name TYPE integer USING (col_name::integer);
Posted by: Guest on June-01-2021

Code answers related to "postgres change column type string to integer"

Browse Popular Code Answers by Language