I have the following query, all the '' come up as empty strings
INSERT INTO `locations` ( `house`,`house_number`,`road`,`city`,`state`,`country`,`country_code`,`supermarket`,`county`,`place_of_worship`,`city_district`,`suburb`,`neighbourhood`,`pedestrian`,`postcode`)
VALUES ('','','','Gemeinde Wien','Vienna','Austria','at','','W','Saint Stephen\'s cathedral','Innere Stadt','Innere Stadt','Textilviertel','Stephansplatz','1010');
table structure
All fields have a default value of null.
problem
So the question is, how can I get it so that empty strings keep their default value?