KevinM1 Posted June 15, 2007 Share Posted June 15, 2007 Using the same setup from my last thread, I have the following query I'm trying to execute: INSERT INTO fusion_aw_ec_events (ev_allow_logins) VALUES ('1') WHERE ev_id='11' And, like always, it's giving me an error: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'WHERE ev_id='11'' at line 1 Is it breaking on me because I only specify one value to insert? Or does it not like my WHERE clause? The column in question is a TINYINT(1) UNSIGNED NOT NULL. Quote Link to comment https://forums.phpfreaks.com/topic/55709-solved-yet-another-insert-error/ Share on other sites More sharing options...
Wildbug Posted June 15, 2007 Share Posted June 15, 2007 And it's the opposite solution as your last thread. You shouldn't be using quotes for *INT (numeric) values. (Actually MySQL usually correctly interprets numeric strings as numeric values, but maybe SQL strict mode is on or something. Try removing the quotes and see if you still get the error.) Quote Link to comment https://forums.phpfreaks.com/topic/55709-solved-yet-another-insert-error/#findComment-275323 Share on other sites More sharing options...
KevinM1 Posted June 15, 2007 Author Share Posted June 15, 2007 And it's the opposite solution as your last thread. You shouldn't be using quotes for *INT (numeric) values. (Actually MySQL usually correctly interprets numeric strings as numeric values, but maybe SQL strict mode is on or something. Try removing the quotes and see if you still get the error.) Not only that, but since I was updating just one column of a row, I should've used UPDATE...SET. It's fixed now, though. Quote Link to comment https://forums.phpfreaks.com/topic/55709-solved-yet-another-insert-error/#findComment-275359 Share on other sites More sharing options...
Wildbug Posted June 15, 2007 Share Posted June 15, 2007 Oh yeah! *smacks forehead* That, too. Quote Link to comment https://forums.phpfreaks.com/topic/55709-solved-yet-another-insert-error/#findComment-275368 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.