Jump to content

[SOLVED] Insert Problem With MYSQL


atticus

Recommended Posts

I am having a problem with the syntax of the where clause in this sql statment in mysql.

 

Error, insert query failedYou 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 id = '$id'' at line 5

 

$query = "INSERT INTO user 
SET website = '$website',
url = '$url',
business = '$business'
WHERE id = '$id';"; 
mysql_query($query) or die('Error, insert query failed' . mysql_error());

Link to comment
Share on other sites

Try that, you need backdrops around a field named 'id' as it's used by mysql.

 

$query = "INSERT INTO user 
SET website = '$website',
url = '$url',
business = '$business'
WHERE `id`= '$id';"; 
mysql_query($query) or die('Error, insert query failed' . mysql_error());

Link to comment
Share on other sites

Try that, you need backdrops around a field named 'id' as it's used by mysql.

 

$query = "INSERT INTO user 
SET website = '$website',
url = '$url',
business = '$business'
WHERE `id`= '$id';"; 
mysql_query($query) or die('Error, insert query failed' . mysql_error());

 

You are correct, as a safe practice I always stress to enclose most strings with ` due to some reserved words such as group. `group` would fix it.

Link to comment
Share on other sites

You can't use INSERT with WHERE.  INSERT means to add a new row, WHERE goes with UPDATE.

 

$query = "UPDATE user

SET website = '$website',

url = '$url',

business = '$business'

WHERE id = '$id';";

 

Link to comment
Share on other sites

You can't use INSERT with WHERE.  INSERT means to add a new row, WHERE goes with UPDATE.

 

$query = "UPDATE user

SET website = '$website',

url = '$url',

business = '$business'

WHERE id = '$id';";

 

 

Can't believe I missed that :(

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.