Hi,
need to generate a report like Table Format(Excel Sheet)
this is an example view of the report which I need of
it is for maintaining branch wise details
In that product name contin in one table
and stock of each branch will contain in another table
--------------------------------------------------------------------
| | Moniter | mouse | keyboard | CPU |
--------------------------------------------------------------------
|Branch1 | 3 | 2 | 2 | 1 |
--------------------------------------------------------------------
|Branch2 | 2 | 3 | 1 | 3 |
--------------------------------------------------------------------
| ... | | | | |
--------------------------------------------------------------------
|Branchn | 2 | 3 | 1 | 3 |
--------------------------------------------------------------------
I want to generate report like this
In the above report it deals with 3 tables in mysql
1. Product Table (to maintain product details)
2. Branch Table (to maintain branch details)
3. stock qunatity table (to stock details with branch Id as well as product Id details)