mybatis中语句
insert into investor_file_info (id, userid, url, type, uploaddate, path, approve_id ) select SEQ_INVESTOR_FILE_INFO.NEXTVAL , A.* from( select #{item.userId}, #{item.investorUrl}, #{item.investorType}, sysdate, #{item.investorPath}, #{item.investorApproveId} from dual )A
oracle数据库中运行是下面这种代码
insert into testcuijia(id,name,sex)
select seq_home_banner.nextval,A.* from ( select '11','男' from dual union select '22','女' from dual) Amysql一样,只是序列不用写了,直接用自增主键就可以
insert into testcuijia(name,sex)
select A.*from ( select '11','男' from dual union select '22','女' from dual) A