Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

As you might know all data in Jira is stored in numerous tables. So to be able to create complicated tables or execute any data from Jira in table format you gonna need to connect different Tables, columns and registers (fields) one with another. To find out what tables does you Jira instance has and what columns contain each table you will need these two queries:

  1. Show all tables

    Code Block
    languagesql
    show tables
Screen Recording 2022-05-04 at 16.02.13.mov

2. Show columns of selected table

Code Block
languagesql
show columns from ISSUE
Info

Insert a query selecting a name of a table that you are interested in

Screen Recording 2022-05-04 at 16.11.38.mov