How do I enter an "empty" POINT() geometry value into a MySQL field of type POINT?
I would use coordinates of North Pole
INSERT INTO table( point )
VALUES( POINT(0.0000,90.0000);
If the actual coordinates of the pole may be an issue i would change the lon value from 0.0000.