convinceme Posted March 22, 2006 Share Posted March 22, 2006 Thats how i rem always entering data into a mysql table but now suddenlyit doesnt appear to work :S thats real weird.... SQL-query: [code]CREATE TABLE cities ( id int(11) NOT NULL auto_increment, city_name varchar(50) NOT NULL default '', latitude varchar(15) NOT NULL default '', longitude varchar(15) NOT NULL default '', population int(11) NOT NULL default '0', country_code char(2) NOT NULL default '', PRIMARY KEY (id)) TYPE=MyISAM AUTO_INCREMENT=1;INSERT INTO `cities` ( `id` , `city_name` , `latitude` , `longitude` , `population` , `country_code` ) VALUES ('', 'Sherbrooke', '45 23 59.00', '-71 46 11.00', 125000, 'ca') [/code][!--quoteo--][div class=\'quotetop\']QUOTE[/div][div class=\'quotemain\'][!--quotec--]Mysql Error:#1264 - Out of range value adjusted for column 'id' at row 1 [/quote]can someone please tell me what went wrong there :S Quote Link to comment https://forums.phpfreaks.com/topic/5483-strange-s/ Share on other sites More sharing options...
wickning1 Posted March 22, 2006 Share Posted March 22, 2006 That should be fine, but you're better off leaving `id` out of the insert:INSERT INTO cities (city_name, latitude, longitude, population, country_code)VALUES ('Sherbrooke', '45 23 59.00', '-71 46 11.00', 125000, 'ca') Quote Link to comment https://forums.phpfreaks.com/topic/5483-strange-s/#findComment-19630 Share on other sites More sharing options...
fenway Posted March 23, 2006 Share Posted March 23, 2006 Agreed -- but if you feel the need to put it in, use NULL or 0, not a string value. Quote Link to comment https://forums.phpfreaks.com/topic/5483-strange-s/#findComment-19869 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.