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

WBOY
WBOYオリジナル
2016-06-07 14:56:561323ブラウズ

批量插入数据 Oracle 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),'计算机存储仓库','否',

批量插入数据 Oracle
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
声明:
この記事の内容はネチズンが自主的に寄稿したものであり、著作権は原著者に帰属します。このサイトは、それに相当する法的責任を負いません。盗作または侵害の疑いのあるコンテンツを見つけた場合は、admin@php.cn までご連絡ください。