Home > Database > Mysql Tutorial > 数据库里面,批量插入数据

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

WBOY
Release: 2016-06-07 14:56:56
Original
1322 people have browsed it

批量插入数据 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
Copy after login
Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template