如果我搜索“销售订单”,它会在结果中获取“销售订单”和“销售订单” 。它也用“s”获取结果。
但是,如果我搜索“销售订单”,它只会获取“销售订单”,但我希望“销售订单”也会获取。
我正在使用 php mysql 查询。
SELECT DISTINCT * FROM wp_posts as p
inner join wp_postmeta as pm on pm.post_id = p.ID
where (p.post_type = 'abc' or p.post_type = 'xyz')
and p.post_title LIKE '%sales order%'
or (pm.meta_key = 'xyzkeyword' and pm.meta_value LIKE '%sales order%')
GROUP by p.ID
ORDER BY p.id DESC