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 gkittelson on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

why this statement does not wotk?

Status
Not open for further replies.

beco73

Programmer
May 8, 2005
157
CA
Hi,

I make a string, which looks like this, it does not update my table, do u see anything wrong with this statement?


update membership_website set
activate = 'general_network' ,
where login_email ='gaya@yahoo.com'


Thanks

 
You had a spurious comma before the where clause.

Code:
update  membership_website set
activate  = 'general_network' 
where login_email ='gaya@yahoo.com'
 
Oh thank you, thank you I did not see that :)
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top