0
我有一個字符串「Hello Help Me, Stackover flow, Google users, Google Plus,
」。 和我的數據庫表我有MySQL選擇字符串
ID TITLE
-- -----
1. Stackover flow
2. Google Plus
3. Help Me
4. Another Title
5. Hey World
我需要使用MySQL查詢ID爲1,2,3,因爲該字符串包含這些詞。
怎麼樣了,可以在MySQL
編輯
select ID, post_title,
from wp_posts
where 'Hello Help Me, Stackover flow, Google users, Google Plus,' like concat('%', post_title, '%') and post_type = 'mediawords';
請檢查我的編輯 – coderex
@coderex。 。 。這看起來是正確的邏輯。 –
:)多數民衆贊成在工作:D額外的「,」使錯誤...謝謝你 – coderex