A database concept used to represent missing, unknown or inapplicable data.

learn more… | top users | synonyms

2
votes
3answers
212 views

Empty LONGTEXT or NULL?

In my MySQL DB I have one field called html_contents that contains all the html to be shown in a webpage. Obviously the html could be huge, and certaintly bigger than 64KB, therefore I decided to use ...
0
votes
1answer
79 views

WITH ROLLUP WHERE NULL = x

I tried to find this question somewhere else on here, and found a couple that were similar to it -- but all the answers seemed pretty convoluted, and I think it was surprising to me because I just ...
0
votes
0answers
56 views

Database associative table

I have a coworker who's insisting on using associative tables to create nullable associations. For example, we have this table : cm.accounts ---------- id:int (PK, identity) ... sm.services ...