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
The correct query to change the data type limit of the particular column:
ALTER TABLE client_details ALTER COLUMN name TYPE character varying(200);