I have a form on a website which has a lot of different fields. Some of the fields are optional while some are mandatory. In my DB I have a table which holds all these values, is it better practice to insert a NULL value or an empty string into the DB columns where the user didn't put any data?
feedback
|
|
By using Some more differences:
| |||||||||
feedback
|
|
One thing to consider, if you ever plan on switching databases, is that Oracle does not support empty strings. They are converted to NULL automatically and you can't query for them using clauses like | |||||||||
feedback
|
|
I don't know what best practice would be here, but I would generally err in favor of the null unless you want null to mean something different from empty-string, and the user's input matches your empty-string definition. Note that I'm saying YOU need to define how you want them to be different. Sometimes it makes sense to have them different, sometimes it doesn't. If not, just pick one and stick with it. Like I said, I tend to favor the NULL most of the time. Oh, and bear in mind that if the column is null, the record is less likely to appear in practically any query that selects (has a where clause, in SQL terms) based off of that column, unless the selection is for a null column of course. | |||
feedback
|
|
One thing to keep in mind is that NULL might make your codepaths much more difficult. In pytohn for example most database adapters / ORMs map So things like:
might result in "Hello, None Joe Doe!" To avoid it you need something like this code:
Which can make things much more complex. | |||||||||
feedback
|