Oracle数据导出为Insert

       当我们对数据库操作时,有时,需要将Oracle数据库表中的数据导出为Insert 语句,这样可以在其它的数据库上执行。 这两天,我将以前用Oracle数据库的开发,用SQL Server 重新写了一遍,为了用Oracle数据库中的数据,参考网上的东东,先将相关的SQL 语句写出,供大家参考使用。
     
Select 'Insert into floating_population_lease_info (Idnumber,Type,Lessor,RoomID,Indate,LeftDate) ' 
|| 'Values('||''''|| Idnumber ||''''|| ',''' || Type ||''''|| ','''|| Lessor || ''''||',''' || RoomID ||''''|| ','''
|| to_char(Indate,'yyyy-MM-dd hh24:mi:ss'||''''||',''' || '2007-10-28' || ''''||')' 
from  floating_population_lease_info

得到的结果如下:

Insert into floating_population_lease_info (Idnumber,Type,Lessor,RoomID,Indate,LeftDate) Values('410101198003011851','1','000027','100','2007-10-10 00:25:05','2007-10-28')
Insert into floating_population_lease_info (Idnumber,Type,Lessor,RoomID,Indate,LeftDate) Values('410101198003011878','1','000028','100','2007-10-10 00:25:05','2007-10-28')
Insert into floating_population_lease_info (Idnumber,Type,Lessor,RoomID,Indate,LeftDate) Values('410101198003011894','1','000029','100','2007-10-10 00:25:05','2007-10-28')
Insert into floating_population_lease_info (Idnumber,Type,Lessor,RoomID,Indate,LeftDate) Values('410101198003011915','1','000030','100','2007-10-10 00:25:05','2007-10-28')
Insert into floating_population_lease_info (Idnumber,Type,Lessor,RoomID,Indate,LeftDate) Values('410101198003011931','1','000031','100','2007-10-10 00:25:05','2007-10-28')
Insert into floating_population_lease_info (Idnumber,Type,Lessor,RoomID,Indate,LeftDate) Values('410101198003011958','1','000032','100','2007-10-10 00:25:05','2007-10-28')
Insert into floating_population_lease_info (Idnumber,Type,Lessor,RoomID,Indate,LeftDate) Values('410101198003012117','1','000040','100','2007-10-10 00:25:05','2007-10-28')
Insert into floating_population_lease_info (Idnumber,Type,Lessor,RoomID,Indate,LeftDate) Values('410101198003012133','1','000041','100','2007-10-10 00:25:05','2007-10-28')
Insert into floating_population_lease_info (Idnumber,Type,Lessor,RoomID,Indate,LeftDate) Values('41010119800301215X','1','000042','100','2007-10-10 00:25:05','2007-10-28')
Insert into floating_population_lease_info (Idnumber,Type,Lessor,RoomID,Indate,LeftDate) Values('410101198003012176','1','000043','100','2007-10-10 00:25:05','2007-10-28')
Insert into floating_population_lease_info (Idnumber,Type,Lessor,RoomID,Indate,LeftDate) Values('410101198003012192','1','000044','100','2007-10-10 00:25:05','2007-10-28')
Insert into floating_population_lease_info (Idnumber,Type,Lessor,RoomID,Indate,LeftDate) Values('410101198003012213','1','000045','100','2007-10-10 00:25:05','2007-10-28')
Insert into floating_population_lease_info (Idnumber,Type,Lessor,RoomID,Indate,LeftDate) Values('41010119800301223X','1','000046','100','2007-10-10 00:25:05','2007-10-28')
Insert into floating_population_lease_info (Idnumber,Type,Lessor,RoomID,Indate,LeftDate) Values('410101198003012256','1','000047','100','2007-10-10 00:25:05','2007-10-28')
Insert into floating_population_lease_info (Idnumber,Type,Lessor,RoomID,Indate,LeftDate) Values('410101198003012272','1','000048','100','2007-10-10 00:25:05','2007-10-28')
Insert into floating_population_lease_info (Idnumber,Type,Lessor,RoomID,Indate,LeftDate) Values('410101198003012299','1','000049','100','2007-10-10 00:25:05','2007-10-28')
Insert into floating_population_lease_info (Idnumber,Type,Lessor,RoomID,Indate,LeftDate) Values('41010119800301231X','1','000050','100','2007-10-10 00:25:05','2007-10-28')
Insert into floating_population_lease_info (Idnumber,Type,Lessor,RoomID,Indate,LeftDate) Values('410101198003012336','1','000001','100','2007-10-10 00:25:05','2007-10-28')
Insert into floating_population_lease_info (Idnumber,Type,Lessor,RoomID,Indate,LeftDate) Values('410101198003012352','1','000002','100','2007-10-10 00:25:05','2007-10-28')
Insert into floating_population_lease_info (Idnumber,Type,Lessor,RoomID,Indate,LeftDate) Values('410101198003012379','1','000003','100','2007-10-10 00:25:05','2007-10-28')
Insert into floating_population_lease_info (Idnumber,Type,Lessor,RoomID,Indate,LeftDate) Values('410101198003012395','1','000004','100','2007-10-10 00:25:05','2007-10-28')
Insert into floating_population_lease_info (Idnumber,Type,Lessor,RoomID,Indate,LeftDate) Values('410101198003012416','1','000005','100','2007-10-10 00:25:05','2007-10-28')
Insert into floating_population_lease_info (Idnumber,Type,Lessor,RoomID,Indate,LeftDate) Values('410101198003012432','1','000006','100','2007-10-10 00:25:05','2007-10-28')
Insert into floating_population_lease_info (Idnumber,Type,Lessor,RoomID,Indate,LeftDate) Values('410101198003012459','1','000007','100','2007-10-10 00:25:05','2007-10-28')
Insert into floating_population_lease_info (Idnumber,Type,Lessor,RoomID,Indate,LeftDate) Values('410101198003012475','1','000008','100','2007-10-10 00:25:05','2007-10-28')
Insert into floating_population_lease_info (Idnumber,Type,Lessor,RoomID,Indate,LeftDate) Values('410101198003012491','1','000009','100','2007-10-10 00:25:05','2007-10-28')
Insert into floating_population_lease_info (Idnumber,Type,Lessor,RoomID,Indate,LeftDate) Values('410101198003012512','1','000010','100','2007-10-10 00:25:05','2007-10-28')
Insert into floating_population_lease_info (Idnumber,Type,Lessor,RoomID,Indate,LeftDate) Values('410101198003012539','1','000011','100','2007-10-10 00:25:05','2007-10-28')
Insert into floating_population_lease_info (Idnumber,Type,Lessor,RoomID,Indate,LeftDate) Values('410101198003012555','1','000012','100','2007-10-10 00:25:05','2007-10-28')
Insert into floating_population_lease_info (Idnumber,Type,Lessor,RoomID,Indate,LeftDate) Values('410101198003012571','1','000013','100','2007-10-10 00:25:05','2007-10-28')
Insert into floating_population_lease_info (Idnumber,Type,Lessor,RoomID,Indate,LeftDate) Values('410101198003012598','1','000014','100','2007-10-10 00:25:05','2007-10-28')
Insert into floating_population_lease_info (Idnumber,Type,Lessor,RoomID,Indate,LeftDate) Values('410101198003012619','1','000015','100','2007-10-10 00:25:05','2007-10-28')
Insert into floating_population_lease_info (Idnumber,Type,Lessor,RoomID,Indate,LeftDate) Values('410101198003012635','1','000016','100','2007-10-10 00:25:05','2007-10-28')
Insert into floating_population_lease_info (Idnumber,Type,Lessor,RoomID,Indate,LeftDate) Values('410101198003012598','1','000027','100','2007-10-10 00:20:35','2007-10-28')
Insert into floating_population_lease_info (Idnumber,Type,Lessor,RoomID,Indate,LeftDate) Values('410101198003012619','1','000028','100','2007-10-10 00:20:35','2007-10-28')
Insert into floating_population_lease_info (Idnumber,Type,Lessor,RoomID,Indate,LeftDate) Values('410101198003012635','1','000029','100','2007-10-10 00:20:35','2007-10-28')
Insert into floating_population_lease_info (Idnumber,Type,Lessor,RoomID,Indate,LeftDate) Values('410101198003012651','1','000030','100','2007-10-10 00:20:35','2007-10-28')
Insert into floating_population_lease_info (Idnumber,Type,Lessor,RoomID,Indate,LeftDate) Values('410101198003012678','1','000031','100','2007-10-10 00:20:35','2007-10-28')
Insert into floating_population_lease_info (Idnumber,Type,Lessor,RoomID,Indate,LeftDate) Values('410101198003012694','1','000032','100','2007-10-10 00:20:35','2007-10-28')
Insert into floating_population_lease_info (Idnumber,Type,Lessor,RoomID,Indate,LeftDate) Values('410101198003012715','1','000033','100','2007-10-10 00:20:35','2007-10-28')
Insert into floating_population_lease_info (Idnumber,Type,Lessor,RoomID,Indate,LeftDate) Values('410101198003011130','1','000034','100','2007-10-10 00:20:43','2007-10-28')
Insert into floating_population_lease_info (Idnumber,Type,Lessor,RoomID,Indate,LeftDate) Values('410101198003011157','1','000035','100','2007-10-10 00:20:43','2007-10-28')
Insert into floating_population_lease_info (Idnumber,Type,Lessor,RoomID,Indate,LeftDate) Values('410101198003011173','1','000036','100','2007-10-10 00:20:43','2007-10-28')
Insert into floating_population_lease_info (Idnumber,Type,Lessor,RoomID,Indate,LeftDate) Values('41010119800301119X','1','000037','100','2007-10-10 00:20:43','2007-10-28')
Insert into floating_population_lease_info (Idnumber,Type,Lessor,RoomID,Indate,LeftDate) Values('410101198003011210','1','000038','100','2007-10-10 00:20:43','2007-10-28')
Insert into floating_population_lease_info (Idnumber,Type,Lessor,RoomID,Indate,LeftDate) Values('410101198003011237','1','000039','100','2007-10-10 00:20:43','2007-10-28')
Insert into floating_population_lease_info (Idnumber,Type,Lessor,RoomID,Indate,LeftDate) Values('410101198003011253','1','000040','100','2007-10-10 00:20:43','2007-10-28')
Insert into floating_population_lease_info (Idnumber,Type,Lessor,RoomID,Indate,LeftDate) Values('41010119800301127X','1','000041','100','2007-10-10 00:20:43','2007-10-28')
Insert into floating_population_lease_info (Idnumber,Type,Lessor,RoomID,Indate,LeftDate) Values('410101198003011296','1','000042','100','2007-10-10 00:20:43','2007-10-28')
Insert into floating_population_lease_info (Idnumber,Type,Lessor,RoomID,Indate,LeftDate) Values('410101198003011317','1','000043','100','2007-10-10 00:20:43','2007-10-28')
Insert into floating_population_lease_info (Idnumber,Type,Lessor,RoomID,Indate,LeftDate) Values('410101198003011333','1','000044','100','2007-10-10 00:20:43','2007-10-28')
Insert into floating_population_lease_info (Idnumber,Type,Lessor,RoomID,Indate,LeftDate) Values('41010119800301135X','1','000045','100','2007-10-10 00:20:43','2007-10-28')
Insert into floating_population_lease_info (Idnumber,Type,Lessor,RoomID,Indate,LeftDate) Values('410101198003011376','1','000046','100','2007-10-10 00:20:43','2007-10-28')
Insert into floating_population_lease_info (Idnumber,Type,Lessor,RoomID,Indate,LeftDate) Values('410101198003011392','1','000047','100','2007-10-10 00:20:43','2007-10-28')
Insert into floating_population_lease_info (Idnumber,Type,Lessor,RoomID,Indate,LeftDate) Values('410101198003011413','1','000048','100','2007-10-10 00:20:43','2007-10-28')
Insert into floating_population_lease_info (Idnumber,Type,Lessor,RoomID,Indate,LeftDate) Values('41010119800301143X','1','000049','100','2007-10-10 00:20:43','2007-10-28')
Insert into floating_population_lease_info (Idnumber,Type,Lessor,RoomID,Indate,LeftDate) Values('410101198003011616','1','000008','100','2007-10-10 00:20:43','2007-10-28')
Insert into floating_population_lease_info (Idnumber,Type,Lessor,RoomID,Indate,LeftDate) Values('410101198003011632','1','000009','100','2007-10-10 00:20:43','2007-10-28')
Insert into floating_population_lease_info (Idnumber,Type,Lessor,RoomID,Indate,LeftDate) Values('410101198003011659','1','000010','100','2007-10-10 00:20:43','2007-10-28')
Insert into floating_population_lease_info (Idnumber,Type,Lessor,RoomID,Indate,LeftDate) Values('410101198003011675','1','000011','100','2007-10-10 00:20:43','2007-10-28')
Insert into floating_population_lease_info (Idnumber,Type,Lessor,RoomID,Indate,LeftDate) Values('410101198003011691','1','000012','100','2007-10-10 00:20:43','2007-10-28')
Insert into floating_population_lease_info (Idnumber,Type,Lessor,RoomID,Indate,LeftDate) Values('410101198003011712','1','000013','100','2007-10-10 00:20:43','2007-10-28')
Insert into floating_population_lease_info (Idnumber,Type,Lessor,RoomID,Indate,LeftDate) Values('410101198003011739','1','000014','100','2007-10-10 00:20:43','2007-10-28')
Insert into floating_population_lease_info (Idnumber,Type,Lessor,RoomID,Indate,LeftDate) Values('410101198003011755','1','000015','100','2007-10-10 00:20:43','2007-10-28')
Insert into floating_population_lease_info (Idnumber,Type,Lessor,RoomID,Indate,LeftDate) Values('410101198003011771','1','000016','100','2007-10-10 00:20:43','2007-10-28')
Insert into floating_population_lease_info (Idnumber,Type,Lessor,RoomID,Indate,LeftDate) Values('410101198003011798','1','000017','100','2007-10-10 00:20:43','2007-10-28')
Insert into floating_population_lease_info (Idnumber,Type,Lessor,RoomID,Indate,LeftDate) Values('410101198003011819','1','000018','100','2007-10-10 00:20:43','2007-10-28')
Insert into floating_population_lease_info (Idnumber,Type,Lessor,RoomID,Indate,LeftDate) Values('410101198003011835','1','000019','100','2007-10-10 00:20:43','2007-10-28')
Insert into floating_population_lease_info (Idnumber,Type,Lessor,RoomID,Indate,LeftDate) Values('410101198003011851','1','000020','100','2007-10-10 00:20:43','2007-10-28')
Insert into floating_population_lease_info (Idnumber,Type,Lessor,RoomID,Indate,LeftDate) Values('410101198003011878','1','000021','100','2007-10-10 00:20:43','2007-10-28')
Insert into floating_population_lease_info (Idnumber,Type,Lessor,RoomID,Indate,LeftDate) Values('410101198003011894','1','000022','100','2007-10-10 00:20:43','2007-10-28')
Insert into floating_population_lease_info (Idnumber,Type,Lessor,RoomID,Indate,LeftDate) Values('410101198003011915','1','000023','100','2007-10-10 00:20:43','2007-10-28')
Insert into floating_population_lease_info (Idnumber,Type,Lessor,RoomID,Indate,LeftDate) Values('410101198003011931','1','000024','100','2007-10-10 00:20:43','2007-10-28')
Insert into floating_population_lease_info (Idnumber,Type,Lessor,RoomID,Indate,LeftDate) Values('410101198003011958','1','000025','100','2007-10-10 00:20:43','2007-10-28')
Insert into floating_population_lease_info (Idnumber,Type,Lessor,RoomID,Indate,LeftDate) Values('410101198003011974','1','000026','100','2007-10-10 00:20:43','2007-10-28')
Insert into floating_population_lease_info (Idnumber,Type,Lessor,RoomID,Indate,LeftDate) Values('410101198003011990','1','000027','100','2007-10-10 00:20:43','2007-10-28')
Insert into floating_population_lease_info (Idnumber,Type,Lessor,RoomID,Indate,LeftDate) Values('410101198003012010','1','000028','100','2007-10-10 00:20:43','2007-10-28')
Insert into floating_population_lease_info (Idnumber,Type,Lessor,RoomID,Indate,LeftDate) Values('410101198003012037','1','000029','100','2007-10-10 00:20:43','2007-10-28')
Insert into floating_population_lease_info (Idnumber,Type,Lessor,RoomID,Indate,LeftDate) Values('410101198003012053','1','000030','100','2007-10-10 00:20:43','2007-10-28')
Insert into floating_population_lease_info (Idnumber,Type,Lessor,RoomID,Indate,LeftDate) Values('41010119800301207X','1','000031','100','2007-10-10 00:20:43','2007-10-28')
Insert into floating_population_lease_info (Idnumber,Type,Lessor,RoomID,Indate,LeftDate) Values('410101198003012096','1','000032','100','2007-10-10 00:20:43','2007-10-28')
Insert into floating_population_lease_info (Idnumber,Type,Lessor,RoomID,Indate,LeftDate) Values('410101198003012117','1','000033','100','2007-10-10 00:20:43','2007-10-28')
Insert into floating_population_lease_info (Idnumber,Type,Lessor,RoomID,Indate,LeftDate) Values('410101198003012133','1','000034','100','2007-10-10 00:20:43','2007-10-28')
Insert into floating_population_lease_info (Idnumber,Type,Lessor,RoomID,Indate,LeftDate) Values('41010119800301215X','1','000035','100','2007-10-10 00:20:43','2007-10-28')
Insert into floating_population_lease_info (Idnumber,Type,Lessor,RoomID,Indate,LeftDate) Values('410101198003012352','1','000045','100','2007-10-10 00:20:43','2007-10-28')
Insert into floating_population_lease_info (Idnumber,Type,Lessor,RoomID,Indate,LeftDate) Values('410101198003012379','1','000046','100','2007-10-10 00:20:43','2007-10-28')
Insert into floating_population_lease_info (Idnumber,Type,Lessor,RoomID,Indate,LeftDate) Values('410101198003012395','1','000047','100','2007-10-10 00:20:43','2007-10-28')
Insert into floating_population_lease_info (Idnumber,Type,Lessor,RoomID,Indate,LeftDate) Values('410101198003012416','1','000048','100','2007-10-10 00:20:43','2007-10-28')
Insert into floating_population_lease_info (Idnumber,Type,Lessor,RoomID,Indate,LeftDate) Values('410101198003012432','1','000049','100','2007-10-10 00:20:43','2007-10-28')
Insert into floating_population_lease_info (Idnumber,Type,Lessor,RoomID,Indate,LeftDate) Values('410101198003012459','1','000050','100','2007-10-10 00:20:43','2007-10-28')
Insert into floating_population_lease_info (Idnumber,Type,Lessor,RoomID,Indate,LeftDate) Values('410101198003012475','1','000001','100','2007-10-10 00:20:43','2007-10-28')
Insert into floating_population_lease_info (Idnumber,Type,Lessor,RoomID,Indate,LeftDate) Values('410101198003012491','1','000002','100','2007-10-10 00:20:43','2007-10-28')
Insert into floating_population_lease_info (Idnumber,Type,Lessor,RoomID,Indate,LeftDate) Values('410101198003012512','1','000003','100','2007-10-10 00:20:43','2007-10-28')
Insert into floating_population_lease_info (Idnumber,Type,Lessor,RoomID,Indate,LeftDate) Values('410101198003012539','1','000004','100','2007-10-10 00:20:43','2007-10-28')
Insert into floating_population_lease_info (Idnumber,Type,Lessor,RoomID,Indate,LeftDate) Values('410101198003012555','1','000005','100','2007-10-10 00:20:43','2007-10-28')
Insert into floating_population_lease_info (Idnumber,Type,Lessor,RoomID,Indate,LeftDate) Values('410101198003012571','1','000006','100','2007-10-10 00:20:43','2007-10-28')
Insert into floating_population_lease_info (Idnumber,Type,Lessor,RoomID,Indate,LeftDate) Values('410101198003012598','1','000007','100','2007-10-10 00:20:43','2007-10-28')
Insert into floating_population_lease_info (Idnumber,Type,Lessor,RoomID,Indate,LeftDate) Values('410101198003012619','1','000008','100','2007-10-10 00:20:43','2007-10-28')
Insert into floating_population_lease_info (Idnumber,Type,Lessor,RoomID,Indate,LeftDate) Values('410101198003012635','1','000009','100','2007-10-10 00:20:43','2007-10-28')
Insert into floating_population_lease_info (Idnumber,Type,Lessor,RoomID,Indate,LeftDate) Values('410101198003012651','1','000010','100','2007-10-10 00:20:43','2007-10-28')
Insert into floating_population_lease_info (Idnumber,Type,Lessor,RoomID,Indate,LeftDate) Values('410101198003012678','1','000011','100','2007-10-10 00:20:43','2007-10-28')
Insert into floating_population_lease_info (Idnumber,Type,Lessor,RoomID,Indate,LeftDate) Values('410101198003012694','1','000012','100','2007-10-10 00:20:43','2007-10-28')
Insert into floating_population_lease_info (Idnumber,Type,Lessor,RoomID,Indate,LeftDate) Values('410101198003012715','1','000013','100','2007-10-10 00:20:43','2007-10-28')
Insert into floating_population_lease_info (Idnumber,Type,Lessor,RoomID,Indate,LeftDate) Values('410101198003011130','1','000014','100','2007-10-10 00:20:51','2007-10-28')
Insert into floating_population_lease_info (Idnumber,Type,Lessor,RoomID,Indate,LeftDate) Values('410101198003011157','1','000015','100','2007-10-10 00:20:51','2007-10-28')
Insert into floating_population_lease_info (Idnumber,Type,Lessor,RoomID,Indate,LeftDate) Values('410101198003011173','1','000016','100','2007-10-10 00:20:51','2007-10-28')
Insert into floating_population_lease_info (Idnumber,Type,Lessor,RoomID,Indate,LeftDate) Values('41010119800301119X','1','000017','100','2007-10-10 00:20:51','2007-10-28')
Insert into floating_population_lease_info (Idnumber,Type,Lessor,RoomID,Indate,LeftDate) Values('410101198003011210','1','000018','100','2007-10-10 00:20:51','2007-10-28')
Insert into floating_population_lease_info (Idnumber,Type,Lessor,RoomID,Indate,LeftDate) Values('410101198003011237','1','000019','100','2007-10-10 00:20:51','2007-10-28')
Insert into floating_population_lease_info (Idnumber,Type,Lessor,RoomID,Indate,LeftDate) Values('410101198003011253','1','000020','100','2007-10-10 00:20:51','2007-10-28')
Insert into floating_population_lease_info (Idnumber,Type,Lessor,RoomID,Indate,LeftDate) Values('410101198003011456','1','000030','100','2007-10-10 00:20:51','2007-10-28')
Insert into floating_population_lease_info (Idnumber,Type,Lessor,RoomID,Indate,LeftDate) Values('410101198003011472','1','000031','100','2007-10-10 00:20:51','2007-10-28')
Insert into floating_population_lease_info (Idnumber,Type,Lessor,RoomID,Indate,LeftDate) Values('410101198003011499','1','000032','100','2007-10-10 00:20:51','2007-10-28')
Insert into floating_population_lease_info (Idnumber,Type,Lessor,RoomID,Indate,LeftDate) Values('41010119800301151X','1','000033','100','2007-10-10 00:20:51','2007-10-28')
Insert into floating_population_lease_info (Idnumber,Type,Lessor,RoomID,Indate,LeftDate) Values('410101198003011536','1','000034','100','2007-10-10 00:20:51','2007-10-28')
Insert into floating_population_lease_info (Idnumber,Type,Lessor,RoomID,Indate,LeftDate) Values('410101198003011552','1','000035','100','2007-10-10 00:20:51','2007-10-28')
Insert into floating_population_lease_info (Idnumber,Type,Lessor,RoomID,Indate,LeftDate) Values('410101198003011579','1','000036','100','2007-10-10 00:20:51','2007-10-28')
Insert into floating_population_lease_info (Idnumber,Type,Lessor,RoomID,Indate,LeftDate) Values('410101198003011595','1','000037','100','2007-10-10 00:20:51','2007-10-28')
Insert into floating_population_lease_info (Idnumber,Type,Lessor,RoomID,Indate,LeftDate) Values('410101198003011616','1','000038','100','2007-10-10 00:20:51','2007-10-28')
Insert into floating_population_lease_info (Idnumber,Type,Lessor,RoomID,Indate,LeftDate) Values('410101198003011632','1','000039','100','2007-10-10 00:20:51','2007-10-28')
Insert into floating_population_lease_info (Idnumber,Type,Lessor,RoomID,Indate,LeftDate) Values('410101198003011659','1','000040','100','2007-10-10 00:20:51','2007-10-28')
Insert into floating_population_lease_info (Idnumber,Type,Lessor,RoomID,Indate,LeftDate) Values('410101198003011675','1','000041','100','2007-10-10 00:20:51','2007-10-28')
Insert into floating_population_lease_info (Idnumber,Type,Lessor,RoomID,Indate,LeftDate) Values('410101198003011691','1','000042','100','2007-10-10 00:20:51','2007-10-28')
Insert into floating_population_lease_info (Idnumber,Type,Lessor,RoomID,Indate,LeftDate) Values('410101198003011712','1','000043','100','2007-10-10 00:20:51','2007-10-28')
Insert into floating_population_lease_info (Idnumber,Type,Lessor,RoomID,Indate,LeftDate) Values('410101198003011739','1','000044','100','2007-10-10 00:20:51','2007-10-28')
Insert into floating_population_lease_info (Idnumber,Type,Lessor,RoomID,Indate,LeftDate) Values('410101198003011755','1','000045','100','2007-10-10 00:20:51','2007-10-28')
Insert into floating_population_lease_info (Idnumber,Type,Lessor,RoomID,Indate,LeftDate) Values('410101198003011771','1','000046','100','2007-10-10 00:20:51','2007-10-28')
Insert into floating_population_lease_info (Idnumber,Type,Lessor,RoomID,Indate,LeftDate) Values('410101198003011931','1','000004','100','2007-10-10 00:20:51','2007-10-28')
Insert into floating_population_lease_info (Idnumber,Type,Lessor,RoomID,Indate,LeftDate) Values('410101198003011958','1','000005','100','2007-10-10 00:20:51','2007-10-28')
Insert into floating_population_lease_info (Idnumber,Type,Lessor,RoomID,Indate,LeftDate) Values('410101198003011974','1','000006','100','2007-10-10 00:20:51','2007-10-28')
Insert into floating_population_lease_info (Idnumber,Type,Lessor,RoomID,Indate,LeftDate) Values('410101198003011990','1','000007','100','2007-10-10 00:20:51','2007-10-28')
Insert into floating_population_lease_info (Idnumber,Type,Lessor,RoomID,Indate,LeftDate) Values('410101198003012010','1','000008','100','2007-10-10 00:20:51','2007-10-28')
Insert into floating_population_lease_info (Idnumber,Type,Lessor,RoomID,Indate,LeftDate) Values('410101198003012037','1','000009','100','2007-10-10 00:20:51','2007-10-28')
Insert into floating_population_lease_info (Idnumber,Type,Lessor,RoomID,Indate,LeftDate) Values('410101198003012053','1','000010','100','2007-10-10 00:20:51','2007-10-28')
Insert into floating_population_lease_info (Idnumber,Type,Lessor,RoomID,Indate,LeftDate) Values('41010119800301207X','1','000011','100','2007-10-10 00:20:51','2007-10-28')
Insert into floating_population_lease_info (Idnumber,Type,Lessor,RoomID,Indate,LeftDate) Values('410101198003012096','1','000012','100','2007-10-10 00:20:51','2007-10-28')
Insert into floating_population_lease_info (Idnumber,Type,Lessor,RoomID,Indate,LeftDate) Values('410101198003012117','1','000013','100','2007-10-10 00:20:51','2007-10-28')
Insert into floating_population_lease_info (Idnumber,Type,Lessor,RoomID,Indate,LeftDate) Values('410101198003012133','1','000014','100','2007-10-10 00:20:51','2007-10-28')
Insert into floating_population_lease_info (Idnumber,Type,Lessor,RoomID,Indate,LeftDate) Values('41010119800301215X','1','000015','100','2007-10-10 00:20:51','2007-10-28')
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值