Как сэкономить результат запроса SQLite в таблице
CREATE TABLE `new_tbl` (`date` datetime , `temp1` int , `count` int , `temp2` int );
Modern Manx
CREATE TABLE `new_tbl` (`date` datetime , `temp1` int , `count` int , `temp2` int );
INSERT INTO `new_tbl` SELECT * FROM table_1 LEFT JOIN table_2 ON table_1.Temp = table_2.Temp;