Jump to content

Problem with Insert Statement.


Alex1646

Recommended Posts

SQL Server Verison: 5.1.5.3

Raw SQL statement:

INSERT INTO pm(to, from, message, date) VALUES('alex', 'alex', 'Bored!', '2011-03-30 04:30')

Error statement:  

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 'to, from, message, date) VALUES('alex', 'alex', 'Bored!', '2011-03-30 04:30')' at line 1

I also went into the SQL demo in W3Schools (http://www.w3schools.com/sql/sql_tryit.asp) thinking it will give me more information.  And I got this error message.

Operation must use an updateable query.

 

SQL structer:

The table name is pm

        id int(11)

to varchar(15)

from varchar(15)

message longtext

date(datetime)

I would like it to not give me a error message.

 

Ive tried removing  single quotes.

 

Cant think of anything else to do.

 

HELP!

Link to comment
Share on other sites

Both to and from have special meaning in SQL, you should rename your fields to something better.

 

Or, as a hack your can surround them in `backticks`, be aware however that this will only work with MySql.

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.