Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8876405
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 14, 20262026-06-14T19:12:23+00:00 2026-06-14T19:12:23+00:00

Using: SELECT * FROM information_schema.routines or SELECT * FROM pg_catalog.pg_proc I can get the

  • 0

Using:

SELECT  * FROM information_schema.routines

or

SELECT  * FROM pg_catalog.pg_proc

I can get the list of system function.
Does exists the way to get the description, or even better the classification, of the functions?
Like here or here.

I don’t believe, that somebody typing this by hands 🙂

Thanks!

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-14T19:12:25+00:00Added an answer on June 14, 2026 at 7:12 pm

    In the psql shell you can get similar information with

    \daS
    
                                                                                     List of aggregate functions
       Schema   |      Name      |      Result data type       |        Argument data types         |                      
    ------------+----------------+-----------------------------+------------------------------------+----------------------
     pg_catalog | array_agg      | anyarray                    | anyelement                         | concatenate aggregate
     pg_catalog | avg            | numeric                     | bigint                             | the average (arithmet
     pg_catalog | avg            | double precision            | double precision                   | the average (arithmet
    ....
    

    You can see what the psql shell does to get this information by starting the shell with the -E argument:

    ********* QUERY **********
    SELECT n.nspname as "Schema",
      p.proname AS "Name",
      pg_catalog.format_type(p.prorettype, NULL) AS "Result data type",
      CASE WHEN p.pronargs = 0
        THEN CAST('*' AS pg_catalog.text)
        ELSE
        pg_catalog.array_to_string(ARRAY(
          SELECT
            pg_catalog.format_type(p.proargtypes[s.i], NULL)
          FROM
            pg_catalog.generate_series(0, pg_catalog.array_upper(p.proargtypes, 1)) AS s(i)
        ), ', ')
      END AS "Argument data types",
      pg_catalog.obj_description(p.oid, 'pg_proc') as "Description"
    FROM pg_catalog.pg_proc p
         LEFT JOIN pg_catalog.pg_namespace n ON n.oid = p.pronamespace
    WHERE p.proisagg
      AND pg_catalog.pg_function_is_visible(p.oid)
    ORDER BY 1, 2, 4;
    **************************
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I'm using this sql command to get column names : select COLUMN_NAME from INFORMATION_SCHEMA.COLUMNS
Using phpMyAdmin and running the following query I get 19 registers: SELECT * FROM
I am using SQL Server 2008. Is there a way to select from multiple
I am trying to query for a list of stored procedure definitions using information_schema.routines
Now I am using something like: dbResult = dbStatement.executeQuery(SELECT COUNT(*) FROM information_schema.tables WHERE table_schema
Using this SQL on SQL Server 2005 SELECT CONSTRAINT_NAME FROM INFORMATION_SCHEMA.KEY_COLUMN_USAGE WHERE TABLE_NAME =
I want to join two tables using JPQL : SELECT * FROM A LEFT
Just a quick question about using select() . I'm using select() to read from
When using $optionquery = SELECT OptionId FROM Option_Table WHERE (OptionType = ?); // Bind
When using this SQL query: Select * from table_name what happens if the name

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.