2016-04-05 5 views

答えて

3

は、文字列定数内の単一引用符を含めるには、ちょうどそれを倍:

UPDATE table 
    SET column = REPLACE(column, 'test''s', 'test'); 
0

この

UPDATE table 
SET column = REPLACE(column, 'test''s', 'test'); 

それとも

UPDATE table 
SET column = REPLACE(column, 'test\'s', 'test'); 

それとも

UPDATE table 
SET column = REPLACE(column, e'test\'s', 'test'); 
をお試しください
関連する問題