SQL query for JQL searches

Shinjani Gaur March 11, 2014

When I do an "Advanced Search" in Jira, how can I see what the equivalent SQL query for that search is? For ex. in Bugzilla one can do this by adding &debug=1 to the URL of the search page.

2 answers

1 vote
Pablo Beltran
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
November 22, 2015

JQL is internally subdivided into Java functions. These Java functions may execute no SQL code, and therefore the are not SQL queries equivalent to JQL queries. If you need to work at SQL level, then SQL for JIRA may help because it transforms JQL queries into SQL. 

0 votes
Nic Brough -Adaptavist-
Community Leader
Community Leader
Community Leaders are connectors, ambassadors, and mentors. On the online community, they serve as thought leaders, product experts, and moderators.
March 11, 2014
You can't. Jira's database is abstracted from what the users get to work with and the searches do not actually use SQL either. The data is indexed and all searches run from the index. Which doesn't quite use SQL, and is a different shape from the actual database.

Suggest an answer

Log in or Sign up to answer