通过搜索优化加速点查找查询¶ 点查找查询是预期返回少量行的查询。搜索优化服务可以提高使用以下元素的点查找查询的性能: 相等谓词(例如 <column_name> = <constant>)。 使用 IN `)的谓词。 示例¶ 搜索优化服务支持 IN 子句: select id, c1, c2, c3 from test_table where id IN (2, 3) order by id; Copy