blob: 2d253ac1efa18a636f61b11c83be6736acea5ec8 (
plain)
1
2
3
4
|
select * into table temp from tenk1 where (unique1 > 647) and (unique1 < 1648);
drop table temp;
select * into table temp from tenk1 where (unique1 > 647) and (unique1 < 1648);
drop table temp;
|