How can I insert NULL value into INT column with MySQL? Is it possible?
If the column has the NOT NULL constraint then it won't be possible; but otherwise this is fine:
NOT NULL
INSERT INTO MyTable(MyIntColumn) VALUES(NULL);