你如何用多个词搜索数据库记录?

How do you search database record with multiple words?

所以,假设我在数据库中有一条记录,例如“Something with corn”。

如果我使用 sql,如“SELECT * FROM table WHERE column LIKE '%Something corn%'”,记录不会显示。

有什么办法可以让我在搜索“Something Corn”时得到记录

谢谢...

SELECT * FROM table WHERE column LIKE '%Something%corn%';