美文网首页
postgres模糊查询索引

postgres模糊查询索引

作者: TinyThing | 来源:发表于2022-09-01 13:04 被阅读0次

    参考链接:https://www.cnblogs.com/kuang17/p/15647129.html

    建立索引方法:

    #1. collate "C"
    create index idx_test_like_name_c on test_like (name collate "C");
    #2. 操作符类varchar_pattern_ops方式
    create index idx_test_like_name_ops on test_like (name varchar_pattern_ops);
    

    相关文章

      网友评论

          本文标题:postgres模糊查询索引

          本文链接:https://www.haomeiwen.com/subject/jfqsnrtx.html