500 символов?
какая субд?
Постгрес
звучит как varchar
TEXT
а в varchar разве нет ограничения в 255 символов?
а в чем разница с varchar ? по описанию в документации я не нашел отличий
у varchar можно указать ограничение длины. больше ничем.
по стандарту это разные типы, но в постгресе реализовали атк что нет разницы
There is no performance difference among these three types, apart from increased storage space when using the blank-padded type, and a few extra CPU cycles to check the length when storing into a length-constrained column. While character(n) has performance advantages in some other database systems, there is no such advantage in PostgreSQL; in fact character(n) is usually the slowest of the three because of its additional storage costs. In most situations text or character varying should be used instead.
Обсуждают сегодня