Answers for "Sql Text or Varchar"

SQL
0

Sql Text or Varchar

Should I use TEXT or VARCHAR in SQL?
Is VARCHAR better than TEXT?
TEXT: The Short Answer. If you're looking for a TL;DR, it's this: 
  use VARCHAR if your data is of variable length and you know it fits into VARCHAR's 65,535 character limit. 
In most circumstances, VARCHAR provides better performance, it's more flexible, and can be fully indexed.

TEXT is non standard !!!
Posted by: Guest on February-16-2022

Code answers related to "SQL"

Browse Popular Code Answers by Language