postgresql 에서 varchar 최대 사이즈
SQL> create table test_table1 ( column1 character varying(50000000) );
ERROR: length for type varchar cannot exceed 10485760
SQL state: 22023
Character: 63
postgresql 에서 varchar 최대 사이즈
SQL> create table test_table1 ( column1 character varying(50000000) );
ERROR: length for type varchar cannot exceed 10485760
SQL state: 22023
Character: 63
댓글을 달아 주세요