I am using mySQL and am trying to get my head around the difference between NULL and empty. If I add a column to my table using...
alter table data add result VARCHAR(4);
Then every field in the column is automatically populated with NULL.
Does this take up any more space than an empty field? How could I add that column with blank values instead?