php 判断且向sql插入大量数据的优化

2024-11-23 06:27:28
推荐回答(1个)
回答1:

最好是把判断的语句写在SQL里面,一般从一个表或视图查询数据插入另外表的语句是:
insert into new_tab select * from old_tab;

同时加上判断条件的语句是:
insert into new_tab select * from old_tab where ....;