|
In a certain table, select count (*) has 150,000 records, but the full-text index to view the unique key count is only about 70,000.
Using select * from tb_example where patindex ('% example%', fdTitle) can find 5 pieces of data, but searching the full-text index select * from tb_example where contains (fdTitle, '"* 例 *"') has only 2 pieces of data, and The full-text index has been completely populated, and it has also been incrementally populated. It should be that many have not been indexed. Excuse me, what is going on?
Thank you! ~~ |
|