Search Results

0
votes

How much difference does BLOB or TEXT make in comparison with VARCHAR()?

use TEXT if you want it treated as a character string, with a character set. use BLOB if you want it treated as a binary string, without a character set. I recommend using TEXT. …