In one of my previous works, we had a separate table in which long descriptions were stored in a text type column. I think this was done due to text type restrictions.
Im now designing tables for an existing application I'm working on, and this question comes to my mind. I resonate with storing a long description of my elements in a single element table in the varchar (max) column. I understand that I cannot index this column, but this is normal since I will not search on these columns.
So far, I see no reason to separate this column from another table.
Could you give me some information if I am missing something or if storing my descriptions in one table on varchar (max) is a good approach? Thanks!
source
share