Sign in
apache
/
drill-test-framework
/
HEAD
/
.
/
framework
/
resources
/
Functional
/
cttas
/
cttas_07.sql
blob: 8cd1fe4781b2956a483931ee983136b42311db28 [
file
] [
log
] [
blame
]
CREATE
TEMPORARY
TABLE
temp_tbl_07 PARTITION
BY
(
col_bln
)
AS
SELECT
DISTINCT
col_bln
FROM
typeall_l
;
SELECT
col_bln
FROM
temp_tbl_07
;
DROP
TABLE
temp_tbl_07
;