百度出来的例子:
declare
maxrecords constant int:=100;
i int :=1;
begin
for i in 15..maxrecords loop
insert into test (column1, column1, column1,…&hellip
今天无意中删掉了一条记录。然后师傅让我去别的数据库中找到该记录,然后添加过来。
走的时候告诉我。用insert into test2 然后 select from test1
于是自己百度了一下,找到了该语句的具体结构:
insert into 目标数据库
select * from 源数据库
具体情况描述: