Adeeb,
If you have:
select a.added,a.curr_date,e.days from addissue a,expiry e;
you need to relate the tables. For example if the relationship is that you want the expiry days for the given added issue, there should be a column that identifies which issue it is in AddIssue, and then a column that joins with it in Expiry.
e.g. select a.added, a.curr_date, e.days from addissue a, expiry e
where a.id = e.addissue
Here is more information on joins:
http://www.w3schools.com/Sql/sql_join.asp