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.
我正在为我的网站编写搜索引擎。在用户表中有第一个和最后一个。我想找到与 $search 中的字符串匹配的名字或姓氏。我想输出带有结果的链接。我不是要求您编写任何代码,只是让我朝着正确的方向前进。这可能吗?
从 SQL 的角度来看,是的,这是可能的。查询可能是:
select link from users where firstname like '%searchstring%' or lastname like '%searchstring%'
如果您正在编写搜索引擎,您可能希望查看数据库的全文搜索功能。全文搜索提供了比基本 SQL 更高级的功能。
SQL 服务器
甲骨文
PostgreSQL
MySQL