将36个SQL表合并到一个表中的最佳方法是什么。它们都具有相同的结构。这些表包含每月POS数据。
答案 0 :(得分:0)
有多种方法可以做到这一点,这里有一个:
CREATE TABLE finaltable (col1, col2, col3...) -- Creates a new table to put all other 36 tables into.
INSERT INTO finaltable (col1, col2, col3...) -- This will insert data from other tables into the finaltable.
SELECT (col1, col2, col3...)
FROM table1 -- you can repeat this step 36 times for all the tables. just change from "table1" to your table name.