I have 3 different table and each table has Rows and Columns. [r,c]
One of my table has 30 rows and 18 columns, The second one has 18 rows and 16 columns, And the last one has 12 Rows and 17 columns.
Number of rows and columns are constant.
I will enter values to this tables. And then I want to save all of this tables to Sqlite. My reference value for insert/select is SheetMetarial.
Instert Into {Table1} (col1, col2...) Values (@col1, @col2, ...)
or
SELECT {SheetMetarial} FROM {Table1};
This way is totally not usefull. So I now my rows(Value1, Value2, ... Val30) and also my columns (Column1, column2, ...) for three tables. What is the best way to make this happen?
Thank you all.