I need your help for a functionnal question about data storage.
I'm on a project where the user can save a sort of excel table on the server. The size of the tables isn't fixed.
What is the best solution to store the tables ? As an array stored as a text in my MySql database ? Using MongoDB or other NoSQL solution ?
For information, no search feature will be implemented on the tables.
Thank you a lot!
Edit: I add two examples of data table:
Example 1: sales per quarter per salesman
Sven Kenneth
2013.Q1 1200 4500
2013.Q2 1350 900
2013.Q3 2487 784
2013.Q4 4570 4512
2014.Q1 4785 3451
Example 2: weight of a couple and their children per months
Him Her Children
Jan 70.5 52.1 45.1
Feb 71.8 52.7 46.1
Mar 70.8 52.7 46.0
Apr 70.1 51.9 46.1
The number of rows and columns of these two example isn't the same and can vary in time: next quarter, the company can hire a new salesman.
How to store these data? Note that never the user will search on these tabels.
I hope this is clearer.