I have a table with a POINT geometry field. I enter latitude / longitude points in it as follows:
INSERT INTO table( point ) VALUES( POINT( lon_value, lat_value );
Sometimes I don't have lat / lon values ββfor input. I cannot enter empty, NULL, or empty POINT () ... since POINT (0,0) is actually a location on the globe, and that won't work either.
What is the solution here?
source share