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