Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个 mySQl 数据库,并且有一个名为文件名的列。在我的 Web 应用程序中,用户输入要搜索的文本(多个单词),我想获取匹配的文件名。我不仅想要完全匹配的名称。我想获取与文本大致匹配的文件名(匹配词超过三个)。有人可以建议一种方法吗?
SELECT DISTINCT TABLE_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE COLUMN_NAME IN ('columnA','ColumnB') AND TABLE_SCHEMA='YourDatabase';