How do you insert a record with a nullable column ?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
if column2 is null
or just include it
|
|||
|
always name all columns in the INSERT. If the table schema changes, your INSERTs are more likely to not break or work wrong. As a result, so just put a NULL in:
EDIT
you code this in several places:
you change your table to:
what happens with your code? what values go in what columns? if you had coded it this way
it will still work |
|||||||||||
|
|
You guys got me thinking: move -1 to the null indicator, To insert a valid value, move 0 to the null indicator. |
|||
|
|