在Oracle中,在300万的数据中,经测试,发现Insert 性能比like好!

 

select count(*from article_detail where content like '%Oracle%';

select count(*from article_detail where instr(content, 'Oracle')>0;

 

 

相关文章:

  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-06-08
  • 2021-12-31
  • 2022-01-19
猜你喜欢
  • 2022-12-23
  • 2022-12-23
  • 2021-12-07
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-02-04
相关资源
相似解决方案