Answers for "postgres convert exisiting column to text"

SQL
1

postgres convert exisiting column to text

# POSTGRESQL - Convert an existing column to text
ALTER TABLE your_table
ALTER COLUMN your_column TYPE text
Posted by: Guest on September-09-2021

Code answers related to "postgres convert exisiting column to text"

Code answers related to "SQL"

Browse Popular Code Answers by Language