Viewing 7 posts - 31 through 38 (of 38 total)
At the end of the day a null represents that a piece of data is unknown, it doesn't matter whether that is stored as a null value, some random place...
March 10, 2016 at 8:03 am
When you come back tomorrow, I'm wondering why
NullColumn = 'MISSING'
is not what you call a token?
I believe that Old Hand provided adequate answer in his post 1766165. NullColumn =...
March 3, 2016 at 7:52 am
Grasshopper, if the "null" columns are stored in separate tables (6NF?), then a join (left) to build the original table would return nulls for the missing value. I see the...
March 2, 2016 at 3:26 pm
And processing 100K rows would take minutes with every nullable column is in its own table. That's just crazy. Normalization is not the ultimate goal -- enough normalization, say to...
March 2, 2016 at 2:14 pm
I am not done 🙂
Not ignoring the logic can be very difficult in practice, indeed. Somebody mentioned adding status columns to describe what is happening with NULLable columns. Here we...
March 2, 2016 at 1:43 pm
By definition, relations can not 'store' NULLs. A relation is simply a shorthand notation for set of logical propositions, derived from the same logical predicate. Heavy words, indeed. Propositions? "Some...
March 2, 2016 at 12:44 pm
This should do the trick:
SELECT
CASE
WHEN Field1 >= Field2 THEN
CASE WHEN Field1 >= Field3 THEN Field1 ELSE Field3 END
ELSE
CASE WHEN Field2 >=...
December 4, 2013 at 11:13 am
Viewing 7 posts - 31 through 38 (of 38 total)