Server IP : 103.119.228.120 / Your IP : 18.117.141.69 Web Server : Apache System : Linux v8.techscape8.com 3.10.0-1160.119.1.el7.tuxcare.els2.x86_64 #1 SMP Mon Jul 15 12:09:18 UTC 2024 x86_64 User : nobody ( 99) PHP Version : 5.6.40 Disable Function : shell_exec,symlink,system,exec,proc_get_status,proc_nice,proc_terminate,define_syslog_variables,syslog,openlog,closelog,escapeshellcmd,passthru,ocinum cols,ini_alter,leak,listen,chgrp,apache_note,apache_setenv,debugger_on,debugger_off,ftp_exec,dl,dll,myshellexec,proc_open,socket_bind,proc_close,escapeshellarg,parse_ini_filepopen,fpassthru,exec,passthru,escapeshellarg,escapeshellcmd,proc_close,proc_open,ini_alter,popen,show_source,proc_nice,proc_terminate,proc_get_status,proc_close,pfsockopen,leak,apache_child_terminate,posix_kill,posix_mkfifo,posix_setpgid,posix_setsid,posix_setuid,dl,symlink,shell_exec,system,dl,passthru,escapeshellarg,escapeshellcmd,myshellexec,c99_buff_prepare,c99_sess_put,fpassthru,getdisfunc,fx29exec,fx29exec2,is_windows,disp_freespace,fx29sh_getupdate,fx29_buff_prepare,fx29_sess_put,fx29shexit,fx29fsearch,fx29ftpbrutecheck,fx29sh_tools,fx29sh_about,milw0rm,imagez,sh_name,myshellexec,checkproxyhost,dosyayicek,c99_buff_prepare,c99_sess_put,c99getsource,c99sh_getupdate,c99fsearch,c99shexit,view_perms,posix_getpwuid,posix_getgrgid,posix_kill,parse_perms,parsesort,view_perms_color,set_encoder_input,ls_setcheckboxall,ls_reverse_all,rsg_read,rsg_glob,selfURL,dispsecinfo,unix2DosTime,addFile,system,get_users,view_size,DirFiles,DirFilesWide,DirPrintHTMLHeaders,GetFilesTotal,GetTitles,GetTimeTotal,GetMatchesCount,GetFileMatchesCount,GetResultFiles,fs_copy_dir,fs_copy_obj,fs_move_dir,fs_move_obj,fs_rmdir,SearchText,getmicrotime MySQL : ON | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /usr/share/doc/postgresql-9.2.24/html/ |
Upload File : |
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <HTML ><HEAD ><TITLE >Indexes and ORDER BY</TITLE ><META NAME="GENERATOR" CONTENT="Modular DocBook HTML Stylesheet Version 1.79"><LINK REV="MADE" HREF="mailto:pgsql-docs@postgresql.org"><LINK REL="HOME" TITLE="PostgreSQL 9.2.24 Documentation" HREF="index.html"><LINK REL="UP" TITLE="Indexes" HREF="indexes.html"><LINK REL="PREVIOUS" TITLE="Multicolumn Indexes" HREF="indexes-multicolumn.html"><LINK REL="NEXT" TITLE="Combining Multiple Indexes" HREF="indexes-bitmap-scans.html"><LINK REL="STYLESHEET" TYPE="text/css" HREF="stylesheet.css"><META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=ISO-8859-1"><META NAME="creation" CONTENT="2017-11-06T22:43:11"></HEAD ><BODY CLASS="SECT1" ><DIV CLASS="NAVHEADER" ><TABLE SUMMARY="Header navigation table" WIDTH="100%" BORDER="0" CELLPADDING="0" CELLSPACING="0" ><TR ><TH COLSPAN="5" ALIGN="center" VALIGN="bottom" ><A HREF="index.html" >PostgreSQL 9.2.24 Documentation</A ></TH ></TR ><TR ><TD WIDTH="10%" ALIGN="left" VALIGN="top" ><A TITLE="Multicolumn Indexes" HREF="indexes-multicolumn.html" ACCESSKEY="P" >Prev</A ></TD ><TD WIDTH="10%" ALIGN="left" VALIGN="top" ><A HREF="indexes.html" ACCESSKEY="U" >Up</A ></TD ><TD WIDTH="60%" ALIGN="center" VALIGN="bottom" >Chapter 11. Indexes</TD ><TD WIDTH="20%" ALIGN="right" VALIGN="top" ><A TITLE="Combining Multiple Indexes" HREF="indexes-bitmap-scans.html" ACCESSKEY="N" >Next</A ></TD ></TR ></TABLE ><HR ALIGN="LEFT" WIDTH="100%"></DIV ><DIV CLASS="SECT1" ><H1 CLASS="SECT1" ><A NAME="INDEXES-ORDERING" >11.4. Indexes and <TT CLASS="LITERAL" >ORDER BY</TT ></A ></H1 ><P > In addition to simply finding the rows to be returned by a query, an index may be able to deliver them in a specific sorted order. This allows a query's <TT CLASS="LITERAL" >ORDER BY</TT > specification to be honored without a separate sorting step. Of the index types currently supported by <SPAN CLASS="PRODUCTNAME" >PostgreSQL</SPAN >, only B-tree can produce sorted output — the other index types return matching rows in an unspecified, implementation-dependent order. </P ><P > The planner will consider satisfying an <TT CLASS="LITERAL" >ORDER BY</TT > specification either by scanning an available index that matches the specification, or by scanning the table in physical order and doing an explicit sort. For a query that requires scanning a large fraction of the table, an explicit sort is likely to be faster than using an index because it requires less disk I/O due to following a sequential access pattern. Indexes are more useful when only a few rows need be fetched. An important special case is <TT CLASS="LITERAL" >ORDER BY</TT > in combination with <TT CLASS="LITERAL" >LIMIT</TT > <TT CLASS="REPLACEABLE" ><I >n</I ></TT >: an explicit sort will have to process all the data to identify the first <TT CLASS="REPLACEABLE" ><I >n</I ></TT > rows, but if there is an index matching the <TT CLASS="LITERAL" >ORDER BY</TT >, the first <TT CLASS="REPLACEABLE" ><I >n</I ></TT > rows can be retrieved directly, without scanning the remainder at all. </P ><P > By default, B-tree indexes store their entries in ascending order with nulls last. This means that a forward scan of an index on column <TT CLASS="LITERAL" >x</TT > produces output satisfying <TT CLASS="LITERAL" >ORDER BY x</TT > (or more verbosely, <TT CLASS="LITERAL" >ORDER BY x ASC NULLS LAST</TT >). The index can also be scanned backward, producing output satisfying <TT CLASS="LITERAL" >ORDER BY x DESC</TT > (or more verbosely, <TT CLASS="LITERAL" >ORDER BY x DESC NULLS FIRST</TT >, since <TT CLASS="LITERAL" >NULLS FIRST</TT > is the default for <TT CLASS="LITERAL" >ORDER BY DESC</TT >). </P ><P > You can adjust the ordering of a B-tree index by including the options <TT CLASS="LITERAL" >ASC</TT >, <TT CLASS="LITERAL" >DESC</TT >, <TT CLASS="LITERAL" >NULLS FIRST</TT >, and/or <TT CLASS="LITERAL" >NULLS LAST</TT > when creating the index; for example: </P><PRE CLASS="PROGRAMLISTING" >CREATE INDEX test2_info_nulls_low ON test2 (info NULLS FIRST); CREATE INDEX test3_desc_index ON test3 (id DESC NULLS LAST);</PRE ><P> An index stored in ascending order with nulls first can satisfy either <TT CLASS="LITERAL" >ORDER BY x ASC NULLS FIRST</TT > or <TT CLASS="LITERAL" >ORDER BY x DESC NULLS LAST</TT > depending on which direction it is scanned in. </P ><P > You might wonder why bother providing all four options, when two options together with the possibility of backward scan would cover all the variants of <TT CLASS="LITERAL" >ORDER BY</TT >. In single-column indexes the options are indeed redundant, but in multicolumn indexes they can be useful. Consider a two-column index on <TT CLASS="LITERAL" >(x, y)</TT >: this can satisfy <TT CLASS="LITERAL" >ORDER BY x, y</TT > if we scan forward, or <TT CLASS="LITERAL" >ORDER BY x DESC, y DESC</TT > if we scan backward. But it might be that the application frequently needs to use <TT CLASS="LITERAL" >ORDER BY x ASC, y DESC</TT >. There is no way to get that ordering from a plain index, but it is possible if the index is defined as <TT CLASS="LITERAL" >(x ASC, y DESC)</TT > or <TT CLASS="LITERAL" >(x DESC, y ASC)</TT >. </P ><P > Obviously, indexes with non-default sort orderings are a fairly specialized feature, but sometimes they can produce tremendous speedups for certain queries. Whether it's worth maintaining such an index depends on how often you use queries that require a special sort ordering. </P ></DIV ><DIV CLASS="NAVFOOTER" ><HR ALIGN="LEFT" WIDTH="100%"><TABLE SUMMARY="Footer navigation table" WIDTH="100%" BORDER="0" CELLPADDING="0" CELLSPACING="0" ><TR ><TD WIDTH="33%" ALIGN="left" VALIGN="top" ><A HREF="indexes-multicolumn.html" ACCESSKEY="P" >Prev</A ></TD ><TD WIDTH="34%" ALIGN="center" VALIGN="top" ><A HREF="index.html" ACCESSKEY="H" >Home</A ></TD ><TD WIDTH="33%" ALIGN="right" VALIGN="top" ><A HREF="indexes-bitmap-scans.html" ACCESSKEY="N" >Next</A ></TD ></TR ><TR ><TD WIDTH="33%" ALIGN="left" VALIGN="top" >Multicolumn Indexes</TD ><TD WIDTH="34%" ALIGN="center" VALIGN="top" ><A HREF="indexes.html" ACCESSKEY="U" >Up</A ></TD ><TD WIDTH="33%" ALIGN="right" VALIGN="top" >Combining Multiple Indexes</TD ></TR ></TABLE ></DIV ></BODY ></HTML >