Articles in this section
Category / Section

How to use Pivot Tables in Bold BI Using PostgreSQL

Published:

In the Bold BI application, use the required tables to create a Pivot table in the PostgreSQL data source using the Crosstab function. In this example, the following list of tables are used.

  1. Products

    Products Table

  2. Customers

    customers-table.png

  3. Product_customers

    product-customers-table.png

  4. V_product_customers

    product-customers-view.png

Follow these steps to create and use Pivot tables in Bold BI.

  1. Enable the Crosstab function in the PostgreSQL data source using the following command.

    CREATE EXTENSION IF NOT EXISTS tablefunc;

    create-extension.png

  2. Connect to a PostgreSQL data connection in Bold BI.

  3. Switch to the code view mode of a data source.

    pivot-table-in-boldbi.png

  4. Write a query using the Crosstab function in the query designer page to utilize the necessary tables from a data source, then click the highlighted Run button to execute the query.
    prepare-query.png

    SELECT * FROM crosstab( 
    $$SELECT customers_name, product_name, SUM(cost) AS cost
      FROM v_product_customers
       GROUP BY customers_name, product_name
       ORDER BY customers_name$$,
    $$SELECT 'Tweetholdar' UNION ALL
      SELECT 'Promuton' UNION ALL
      SELECT 'Transniollor' UNION ALL
      SELECT 'Cleanputon' UNION ALL
      SELECT 'Tabwoofphone' UNION ALL
      SELECT 'Supceivra' UNION ALL
      SELECT 'Supputommar' UNION ALL
      SELECT 'Mictellar' UNION ALL
      SELECT 'Armlififiator' UNION ALL
      SELECT 'Monoculimry'$$
    )
    AS ct(customers_name VARCHAR, Tweetholdar NUMERIC,Promuton NUMERIC,Transniollor NUMERIC,Cleanputon NUMERIC,Tabwoofphone NUMERIC,Supceivra NUMERIC,Supputommar NUMERIC,Mictellar NUMERIC,Armlififiator NUMERIC,Monoculimry NUMERIC);
    
    
  5. Now, click Update to view the query result of the pivot table.
    crosstab-query-result.png

Was this article useful?
Like
Dislike
Help us improve this page
Please provide feedback or comments
NG
Written by Nisanth Gunasekaran
Updated
Comments (0)
Please  to leave a comment
Access denied
Access denied