insert into bbb(字段列表)
select 字段列表
from aaa
where userid=100;
insert bbb(d,e,f)
select a,b,c
from aaa;
insert fields into tableA select fields from tableB where condition;
insert into bbb(字段列表)
select 字段列表
from aaa
where userid=100;
insert bbb(d,e,f)
select a,b,c
from aaa;
insert fields into tableA select fields from tableB where condition;