Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent db6de5b commit eb6af01Copy full SHA for eb6af01
doc/src/sgml/func.sgml
@@ -11102,8 +11102,10 @@ SELECT b1 = ANY((SELECT b2 FROM t2 ...)) FROM t1 ...;
11102
<programlisting>
11103
SELECT count(*) FROM sometable;
11104
</programlisting>
11105
- will be executed by <productname>PostgreSQL</productname> using a
11106
- sequential scan of the entire table.
+ will require effort proportional to the size of the table:
+ <productname>PostgreSQL</productname> will need to scan either the
11107
+ entire table or the entirety of an index which includes all rows in
11108
+ the table.
11109
</para>
11110
</note>
11111
0 commit comments