Do you have just different types of items in your database? Read about normalization in MySQL (Stack Overflow answer).
Instead of creating 15 tables with same columns, you can e.g. add one column which tells that what type of item is on that row. So your columns could be something like no, type, date, commentary, price, stock
For example, if you had 2 separated tables before...
Table 1
-----------------------------------------------------------
| no | date | commentary | price | stock |
-----------------------------------------------------------
| 1 | 2015-08-01 | Lorem ipsum | 10.00 | 6 |
-----------------------------------------------------------
| 2 | 2015-08-07 | Dolor sit | 25.00 | 3 |
-----------------------------------------------------------
Table 2
-----------------------------------------------------------
| no | date | commentary | price | stock |
-----------------------------------------------------------
| 1 | 2015-08-03 | An usu nemore | 15.00 | 10 |
-----------------------------------------------------------
| 2 | 2015-07-30 | Eam at eros | 30.00 | 1 |
-----------------------------------------------------------
You can create just one table which contains the data from tables 1 and 2. But this time table contains new column type
which tells what type of item is on the row. In this example the data which was in the Table 1 before has type 10
and data from Table 2 has type 20
.
------------------------------------------------------------------
| no | type | date | commentary | price | stock |
------------------------------------------------------------------
| 1 | 10 | 2015-08-01 | Lorem ipsum | 10.00 | 6 |
------------------------------------------------------------------
| 2 | 10 | 2015-08-07 | Dolor sit | 25.00 | 3 |
------------------------------------------------------------------
| 3 | 20 | 2015-08-03 | An usu nemore | 15.00 | 10 |
------------------------------------------------------------------
| 4 | 20 | 2015-07-30 | Eam at eros | 30.00 | 1 |
------------------------------------------------------------------
Now you can execute MySQL query
SELECT * FROM tablename WHERE type = '10'
to get similar results than before when selecting all from Table 1.