If this is your first visit, be sure to check out the FAQ by clicking the link above. You may have to register before you can post: click the register link above to proceed. To start viewing messages, select the forum that you want to visit from the selection below.

 
Go Back  dBforums > Database Server Software > MySQL > update issue with apostrophe

Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1 (permalink)  
Old 04-28-07, 14:02
hconnor hconnor is offline
Registered User
 
Join Date: Feb 2007
Posts: 34
update issue with apostrophe

UPDATE physician

SET physician_Cert1_Name='Workers Compensation Medicine' WHERE physician_Cert1_Name='Workers' Compensation Medicine'


Hi,

trying to update this table, but how do you handle apostraphes? seems like the easiest way is just to get rid of them. can anyone suggest how to get the above code to run and how you typically handle apostrophe's to avoid the coding error above. Thanks.

mike
Reply With Quote
  #2 (permalink)  
Old 04-28-07, 16:00
guelphdad guelphdad is offline
Registered User
 
Join Date: Mar 2004
Posts: 440
does this not work?
Code:
UPDATE physician

SET physician_Cert1_Name=
"Workers Compensation Medicine" 
WHERE 
physician_Cert1_Name="Workers' Compensation Medicine"
Reply With Quote
  #3 (permalink)  
Old 04-28-07, 17:48
r937 r937 is offline
SQL Consultant
 
Join Date: Apr 2002
Location: Toronto, Canada
Posts: 19,534
standard sql --
Code:
UPDATE physician
   SET physician_Cert1_Name = 'Workers Compensation Medicine' 
 WHERE physician_Cert1_Name = 'Workers'' Compensation Medicine'
but, i mean, why the update to remove them? apostrophes are good, if'n ya know how to use 'em
__________________
r937.com | rudy.ca
please visit Simply SQL and buy my book
Reply With Quote
  #4 (permalink)  
Old 04-29-07, 11:08
hconnor hconnor is offline
Registered User
 
Join Date: Feb 2007
Posts: 34
as always, thanks.
Reply With Quote
Reply

Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On