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.
我有一张桌子,里面有大约 100.000.000 个电话号码,VARCHAR15。使用“like”语句时,哪种数据库引擎和索引类型最好(最快)?Phone_No like '%1232112' 的示例
干杯!
雷内
Phone_No like '%1232112' 的示例
对于此特定示例,您可能会使用反向索引。就是这样 - 您创建一个列值反转的列,并使用触发器对其进行维护。
LIKE '2112321%'然后您使用标准搜索它。
LIKE '2112321%'