Answers for "convert table to text in postgres"

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 "convert table to text in postgres"

Code answers related to "SQL"

Browse Popular Code Answers by Language