Jump to content

Error in SQL statement...


djanim8

Recommended Posts

I've looked over this like 100 times and can't seem to find the error, thought maybe another person could look over it and see what I'm missing...

 

UPDATE packages SET name = 'Pkg 1. Complete Sound', price = '895', desc = 'Package priced fo up to 4 hours performance time. Package includes up to 3 hours complimentary set-up time, MC service from your chosen Disc Jockey throughout the evening, 2 Professional JBL Powered Speakers, Wireless Microphone, Custom-built Disc Jockey unit with Professional Grade equipment.' WHERE pkgID = '1'

 

the error I get is:

 

#1064 - 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 'desc = 'Package priced for up to 4 hours performance time. Package includes up t' at line 1 

Link to comment
https://forums.phpfreaks.com/topic/63082-error-in-sql-statement/
Share on other sites

UPDATE `packages` SET `name` = 'Pkg 1. Complete Sound', `price` = '895', `desc` = 'Package priced fo up to 4 hours performance time. Package includes up to 3 hours complimentary set-up time, MC service from your chosen Disc Jockey throughout the evening, 2 Professional JBL Powered Speakers, Wireless Microphone, Custom-built Disc Jockey unit with Professional Grade equipment.' WHERE `pkgID` = '1'

 

desc is a reserved keyword, use backticks around table and column names (`).  Single quotes go around data like you have them.

Archived

This topic is now archived and is closed to further replies.

×
×
  • 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.