Reputation: 1
I am using mysql to store values of graph database and comes to around atmost 360 chars , is it advisible to use varchar instead of text? since I will be frequentyy quering, also the table will keep increasing in rows over time.
Upvotes: 0
Views: 166
Reputation: 1557
for so few charachters you should use varchar
. Varchar
could store up to 65535 charachters. There is no need for you to use text
Upvotes: 1