how to create a table inside of a table sqlite3 code example
Example 1: how to create a table in mysql
-- 'CREATE TABLE' followed by the name of the table.
-- In round brackets, define the columns.
CREATE TABLE `test_table`
(
id INT(10) PRIMARY KEY,
username VARCHAR(50) NOT NULL
);
Example 2: lua insert table into table
table.insert(tabletoaddto, pos:num, tabletoinsert)