I usually try to use the correct datatype to store information.
For example:
tinyint(1)
to store boolean. Why not use varchar(1)
or even int(11)
and bigint
?
Works with user_id
instead of nick name.
Would I lose space in my disk, memory, or is it just slow?