Man*_*hit 5 sql postgresql select explain sql-execution-plan
我正在分析我的查询。
postgres=# explain analyze select * from student;
QUERY PLAN
------------------------------------------------------------------------------------------------------
Seq Scan on student (cost=0.00..22.00 rows=1200 width=40) (actual time=0.005..0.005 rows=7 loops=1)
Planning time: 0.035 ms
Execution time: 0.019 ms
(3 rows)
Run Code Online (Sandbox Code Playgroud)
我不知道loop = 1意味着什么Seq Scan on student (cost=0.00..22.00 rows=1200 width=40) (actual time=0.005..0.005 rows=7 loops=1)。
我已经搜索了postgres文档,但是没有找到关于循环参数的任何很好的参考。
提前致谢。