I want to select data from 4 tables using the Codeigniter framework. The 4 tables have a similar column structure. I want to get the table data corresponding to certain year and month.
This is my table structure:
Table t1
:
accid uid month year ccbalance
--------------------------------------------------------
101 19 May 1996 4545
-----------------------------------------------------
101 19 sept 1998 1500
--------------------------------------------------------
Table t2
:
accid uid month year insbalance
--------------------------------------------------------
102 19 May 1995 2059
-----------------------------------------------------
102 19 july 1998 2500
--------------------------------------------------------
Table t3
:
accid uid month year ccbalance
--------------------------------------------------------
109 19 June 1999 10000
-----------------------------------------------------
109 19 Aug 1990 1500
--------------------------------------------------------
Table t4
:
accid uid month year ccbalance
--------------------------------------------------------
105 19 Aug 1995 10000
-----------------------------------------------------
105 19 May 1995 3333
--------------------------------------------------------
If I select May 1995
, I want to get this result:
accid uid month year ccbalance
--------------------------------------------------------
105 19 May 1995 3333
102 19 May 1995 2059