where is system field stored in jira database?

fabby January 13, 2013

my jira version is 4.4.1.

i want to get 'Time Spent' 's value. It is one of 'Log Work' 's sub Field.

i can not find any information about system field in jira database

1 answer

1 accepted

1 vote
Answer accepted
Renjith Pillai
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.
January 13, 2013

Worklog entries are stored in the table . You need to join the query with jiraissue table to get the values.

The following query will give the value in seconds.

select pkey,sum(timeworked) from worklog,jiraissue where jiraissue.id=worklog.issueid group by pkey

fabby January 13, 2013

thanks,Rehjith.

Suggest an answer

Log in or Sign up to answer