mysql 從一個表中查詢,插入到另一個表中

踏破凌霄城發表於2019-01-28
insert into table1(field1) select field1 from table2; 

 

insert into table1(field1) select field1 from table2 WHERE id > 3 and id <= 10;

 

相關文章