Normally for a column with 2 possible values, I would use TINYINT(1) and programmatically assign a value (ie. Yes/No) to 0/1. I assume that this is the "correct: way?
Now how about using ENUM instead? Is there any difference in overhead? Thanks!
Normally for a column with 2 possible values, I would use TINYINT(1) and programmatically assign a value (ie. Yes/No) to 0/1. I assume that this is the "correct: way?
Now how about using ENUM instead? Is there any difference in overhead? Thanks!