user2849437
user2849437

Reputation: 1

varchar or text for string a length just 360 characters

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

Answers (1)

Cristian Bitoi
Cristian Bitoi

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

Related Questions