如何在多个列中搜索术语:title
,content
。例如:
$searchTerm = 'android';
SELECT * FROM posts WHERE `title` OR `content` contains $SearchTerm
最佳答案
SELECT *
FROM posts
WHERE
`title` LIKE '%android%'
OR `content` LIKE '%android%'
关于php - 在多列中查找搜索词,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/10071867/