2010-07-13 58 views

回答

2

用途:

UPDATE your_table 
    SET comment_author_url = '' 
WHERE comment_author_url = 'http://google.com' 
+0

謝謝。它的工作原理:D – Alex 2010-07-13 22:50:19

+0

很好的答案。快速簡單。將使一些與正則表達式匹配的neato插件。 ;-) – hsatterwhite 2010-07-14 12:55:09

+1

@hsatterwhite:交換'WHERE comment_author_url = ...'用'WHERE comment_author_url REGEXP ...' - 這裏有更多關於MySQL文檔鏈接的正則表達式支持的信息(http://dev.mysql.com/ DOC/refman/5.1/EN/regexp.html)。 – 2010-07-14 15:37:25