/query that temp table. So Can't we update temp table column length in postgres ?
Why not ? create temp table x(txt varchar(5)); insert into x values('Postgres'); --ERROR: value too long for type character varying(5) alter table x alter txt type varchar(10); insert into x values('Postgres'); --OK
Can't we view the data from temp table in the same session in which table is created.
Can't we do force delete for existing temp table ?
Обсуждают сегодня