Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations John Tel on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

error with WHERE

Status
Not open for further replies.

yebaws

Technical User
Mar 22, 2007
42
GB
could someone please explain this error. It's driving me nuts - I just can't see what's wrong with the query

SQL query:

UPDATE coursedescriptions SET coursenumber = '333',
coursetitle = 'ctitle 6 mod',
coursedescription = 'description 6',
instructor = 'sssssssssss',
courseoutline1 = 'ssdfrfccdeeeee',
courseoutline2 = '',
courseoutline3 = '',
courseoutline4 = '',
courseoutline5 = '',
courseoutline6 = '',
courseoutline7 = '',
courseoutline8 = '',
courseoutline9 = '',
courseoutline10 = '',
country = '',
refcode = '',
startday = '',
startmonth = '',
startyear = '',
courselength = '',
cost = '',
buylink = '',
WHERE id =5

MySQL said: Documentation
#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 'where id = 5' at line 1
 
THANKS!!!!

You've no idea how much grief that comma has caused me!
 
dangling commas are a lot easier to spot if you use the leading comma coding convention --
Code:
UPDATE coursedescriptions 
   SET coursenumber = '333'
     , coursetitle = 'ctitle 6 mod'
     , coursedescription = 'description 6'
     , instructor = 'sssssssssss'
     , courseoutline1 = 'ssdfrfccdeeeee'
     , courseoutline2 = ''
     , courseoutline3 = ''
     , courseoutline4 = ''
     , courseoutline5 = ''
     , courseoutline6 = ''
     , courseoutline7 = ''
     , courseoutline8 = ''
     , courseoutline9 = ''
     , courseoutline10 = ''
     , country = ''
     , refcode = ''
     , startday = ''
     , startmonth = ''
     , startyear = ''
     , courselength = ''
     , cost = ''
     , buylink = ''
     , 
 WHERE id =5

r937.com | rudy.ca
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top