1
有誰知道如何從所有註釋中通過運行SQL查詢替換「comment_author_url」字段?SQL/Wordpress - 刪除註釋字段的查詢
例如,如果該字段爲http://google.com
與""
(空字符串)來取代它
有誰知道如何從所有註釋中通過運行SQL查詢替換「comment_author_url」字段?SQL/Wordpress - 刪除註釋字段的查詢
例如,如果該字段爲http://google.com
與""
(空字符串)來取代它
用途:
UPDATE your_table
SET comment_author_url = ''
WHERE comment_author_url = 'http://google.com'
謝謝。它的工作原理:D – Alex 2010-07-13 22:50:19
很好的答案。快速簡單。將使一些與正則表達式匹配的neato插件。 ;-) – hsatterwhite 2010-07-14 12:55:09
@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