Como você altera o tipo de coluna e também define essa coluna para not null
junta?
Eu estou tentando:
ALTER TABLE mytable ALTER COLUMN col TYPE character varying(15) SET NOT NULL
Isso retorna um erro.
Qual é a sintaxe certa?
Como você altera o tipo de coluna e também define essa coluna para not null
junta?
Eu estou tentando:
ALTER TABLE mytable ALTER COLUMN col TYPE character varying(15) SET NOT NULL
Isso retorna um erro.
Qual é a sintaxe certa?
Respostas:
Isso deve estar correto:
ALTER TABLE mytable
ALTER COLUMN col TYPE character varying(15),
ALTER COLUMN col SET NOT NULL