blob: 0ed3a7b1e58ffad24838ef553cf0b9596a96f316 (
plain)
1
2
3
4
|
select * into table temp from tenk1 where (unique2 > 301) and (unique2 < 402);
drop table temp;
select * into table temp from tenk1 where (unique2 > 301) and (unique2 < 402);
drop table temp;
|