数据库里面,批量插入数据

insert into t_store(resource_id,store_code,store_name,store_type,is_stop,address,tel,mobile,emp_code,financial_staff,is_dealers)

select sys_guid(), 'CK-'||to_char(rownum),'测试仓库'||to_char(rownum),'计算机存储仓库','否','辽宁省沈阳市','','15014289899',
'王静静','钱丽','否' 

from dual 


connect by level <= 65535

编程技巧