Displays all operators in the connected database, with comments : Postgre SQL Command « Postgre SQL « PostgreSQL

PostgreSQL
1. Aggregate Functions
2. Analytical Functions
3. Array
4. Constraints
5. Cursor
6. Data Type
7. Database
8. Date Timezone
9. Index
10. Inheritance
11. Insert Delete Update
12. Math Functions
13. Postgre SQL
14. Select Query
15. Sequence
16. Store Procedure Function
17. String Functions
18. Subquery
19. Table
20. Table Joins
21. Transaction
22. User Previliege
23. View
Java
Java Tutorial
Java Source Code / Java Documentation
Java Open Source
Jar File Download
Java Articles
Java Products
Java by API
C# / C Sharp
C# / CSharp Tutorial
ASP.Net
JavaScript DHTML
JavaScript Tutorial
JavaScript Reference
HTML / CSS
HTML CSS Reference
C / ANSI-C
C Tutorial
C++
C++ Tutorial
PHP
Python
SQL Server / T-SQL
SQL Server / T-SQL Tutorial
Oracle PL / SQL
Oracle PL/SQL Tutorial
SQL / MySQL
MySQL Tutorial
VB.Net
VB.Net Tutorial
Flash / Flex / ActionScript
VBA / Excel / Access / Word
Microsoft Office PowerPoint 2007 Tutorial
Microsoft Office Excel 2007 Tutorial
Microsoft Office Word 2007 Tutorial
PostgreSQL » Postgre SQL » Postgre SQL Command 
Displays all operators in the connected database, with comments


postgres=# --Displays all operators in the connected database, with comments.
postgres=# \do+
                                                                               List of operators
   Schema   | Name |        Left arg type        |       Right arg type        |         Result type         |                           Description
------------+------+-----------------------------+-----------------------------+-----------------------------+-------------------------------------------------------
 pg_catalog | !    | bigint                      |                             | numeric                     |
 pg_catalog | !!   |                             | bigint                      | numeric                     |
 pg_catalog | !!=  | integer                     | text                        | boolean                     | not in
 pg_catalog | !!=  | oid                         | text                        | boolean                     | not in
 pg_catalog | !~   | character                   | text                        | boolean                     | does not match regex., case-sensitive
 pg_catalog | !~   | name                        | text                        | boolean                     | does not match regex., case-sensitive
 pg_catalog | !~   | text                        | text                        | boolean                     | does not match regex., case-sensitive
 pg_catalog | !~*  | character                   | text                        | boolean                     | does not match regex., case-insensitive
 pg_catalog | !~*  | name                        | text                        | boolean                     | does not match regex., case-insensitive
 pg_catalog | !~*  | text                        | text                        | boolean                     | does not match regex., case-insensitive
 pg_catalog | !~~  | bytea                       | bytea                       | boolean                     | does not match LIKE expression
 pg_catalog | !~~  | character                   | text                        | boolean                     | does not match LIKE expression
 pg_catalog | !~~  | name                        | text                        | boolean                     | does not match LIKE expression
 pg_catalog | !~~  | text                        | text                        | boolean                     | does not match LIKE expression
 pg_catalog | !~~* | character                   | text                        | boolean                     | does not match LIKE expression, case-insensitive
 pg_catalog | !~~* | name                        | text                        | boolean                     | does not match LIKE expression, case-insensitive
 pg_catalog | !~~* | text                        | text                        | boolean                     | does not match LIKE expression, case-insensitive
 pg_catalog | #    | bigint                      | bigint                      | bigint                      | binary xor
 pg_catalog | #    | bit                         | bit                         | bit                         | bitwise exclusive or
 pg_catalog | #    | box                         | box                         | box                         | box intersection (another box)
 pg_catalog | #    | integer                     | integer                     | integer                     | binary xor
 pg_catalog | #    | line                        | line                        | point                       | intersection point
 pg_catalog | #    | lseg                        | lseg                        | point                       | intersection point
 pg_catalog | #    | smallint                    | smallint                    | smallint                    | binary xor
 pg_catalog | #    |                             | path                        | integer                     | number of points in path
 pg_catalog | #    |                             | polygon                     | integer                     | number of points in polygon
 pg_catalog | ##   | line                        | box                         | point                       | closest point to line on box
 pg_catalog | ##   | line                        | lseg                        | point                       | closest point to line on line segment
 pg_catalog | ##   | lseg                        | box                         | point                       | closest point to line segment on box
 pg_catalog | ##   | lseg                        | line                        | point                       | closest point to line segment on line
 pg_catalog | ##   | lseg                        | lseg                        | point                       | closest point to line segment on line segment
 pg_catalog | ##   | point                       | box                         | point                       | closest point on box
 pg_catalog | ##   | point                       | line                        | point                       | closest point on line
 pg_catalog | ##   | point                       | lseg                        | point                       | closest point on line segment
 pg_catalog | #<   | tinterval                   | reltime                     | boolean                     | length less-than
 pg_catalog | #<=  | tinterval                   | reltime                     | boolean                     | length less-than-or-equal
 pg_catalog | #<>  | tinterval                   | reltime                     | boolean                     | length not equal to
 pg_catalog | #=   | tinterval                   | reltime                     | boolean                     | length equal
 pg_catalog | #>   | tinterval                   | reltime                     | boolean                     | length greater-than
 pg_catalog | #>=  | tinterval                   | reltime                     | boolean                     | length greater-than-or-equal
 pg_catalog | %    | bigint                      | bigint                      | bigint                      | modulus
 pg_catalog | %    | integer                     | integer                     | integer                     | modulus
 pg_catalog | %    | integer                     | smallint                    | integer                     | modulus
 pg_catalog | %    | numeric                     | numeric                     | numeric                     | modulus
 pg_catalog | %    | smallint                    | integer                     | integer                     | modulus
 pg_catalog | %    | smallint                    | smallint                    | smallint                    | modulus
 pg_catalog | &    | bigint                      | bigint                      | bigint                      | binary and
 pg_catalog | &    | bit                         | bit                         | bit                         | bitwise and
 pg_catalog | &    | integer                     | integer                     | integer                     | binary and
 pg_catalog | &    | smallint                    | smallint                    | smallint                    | binary and
 pg_catalog | &&   | box                         | box                         | boolean                     | overlaps
 pg_catalog | &&   | circle                      | circle                      | boolean                     | overlaps
 pg_catalog | &&   | polygon                     | polygon                     | boolean                     | overlaps
 pg_catalog | &&   | tinterval                   | tinterval                   | boolean                     | overlaps
-- More  --
           
       
Related examples in the same category
1. Command can be used to view all sequences in the currently connected database
2. Displays all databases available, with comments
3. Listing psql slash commands
4. The variable list
5. Displays all database objects, with comments
6. Displays all database objects in the connected database, with comments
7. Displays all tables in the connected database, with comments
8. Displays all indices in the connected database, with comments
9. Displays all sequences in the connected database, with comments
10. Displays all views in the connected database, with comments
11. Displays all functions in the connected database, with comments
12. Displays all data types in the connected database, with comments
13. To get out of psql
14. timestamp with time zone postmaster start time
www.java2java.com | Contact Us
Copyright 2010 - 2030 Java Source and Support. All rights reserved.
All other trademarks are property of their respective owners.