比如临时表叫temp,你要查询的语句为select * from 表名 where id=1。
1.建表temp
2.插入语句:
1 insert into temp select * from 表名 where id=1;
2 commit;
比如临时表叫temp,你要查询的语句为select * from 表名 where id=1。
1.建表temp
2.插入语句:
1 insert into temp select * from 表名 where id=1;
2 commit;