TABLE FULL SCAN的意思|示意
表全扫描
TABLE FULL SCAN的网络常见释义
全表扫描 MINUS Clause会导致2张表均在本地被全表扫描(TABLE FULL SCAN),且要求发生SORT排序。 若所对比的表上有大量的数据,那么排序的代价将会是非常大的, 因此这种方法的效率不高。
TABLE FULL SCAN相关短语
1、 full table scan 全表扫描 ; 扫描 ; 等级最低 ; 对表进行扫描并检索行
TABLE FULL SCAN相关例句
If you assume that there is an index on COL1 in the above example, if COL1 is type-cast instead of the RHS, then the index will be bypassed and the query will perform a full table scan.
假设上面示例中的COL1列上有索引,如果对COL1而不是RHS执行类型转换,那么会绕过索引,查询会执行全表扫描。
This query plan shows a full table scan.
该查询计划显示了一个全表扫描。
Currently, a full table scan is performed whenever RUNSTATS on table is run.
目前,要运行表上的RUNSTATS,就要执行全表扫描。
Indexes improve query performance by avoiding a full table scan.
索引能够避免全表扫描,从而能够提高查询性能。
The preceding query requires MySQL to perform a full table scan, the slowest type of query for a large table.
上面的那个查询会执行一个全表扫描,对于一个大表来说这是最慢的一种查询方式。
The predicates in the query in Listing 7 are weakly selective so that a full table scan of the PDBXML table is required.
清单7中查询的谓词选择性较弱,因此需要对pdbxml表进行全表扫描。