I need to insert a null value into a table..
My table only has one field so i declared it as not null - but a null value is unique and i know it can be done.
If i use Enterprise Manager and try to insert a null value i enter <null> i get This cell contrains the text string <null>. You can press Ctl+0 inside the cell to replace it with a NULL value. Do you want to replace this entry now?
If i do an insert command:
Insert into tblTest values (NULL) i get an error message: Cannot insert the value null into column - column does not allow null.
Is inserting <null> the same as NULL?
If not - how do i insert a null value into the table?
Thanks
My table only has one field so i declared it as not null - but a null value is unique and i know it can be done.
If i use Enterprise Manager and try to insert a null value i enter <null> i get This cell contrains the text string <null>. You can press Ctl+0 inside the cell to replace it with a NULL value. Do you want to replace this entry now?
If i do an insert command:
Insert into tblTest values (NULL) i get an error message: Cannot insert the value null into column - column does not allow null.
Is inserting <null> the same as NULL?
If not - how do i insert a null value into the table?
Thanks