I need to increase the size of a character varying(60) field in a postgres database table without data loss.
I have this command
alter table client_deta
you can use this below sql command ALTER TABLE client_details ALTER COLUMN name TYPE varchar(200)
ALTER TABLE client_details ALTER COLUMN name TYPE varchar(200)