Sign in
apache
/
drill-test-framework
/
HEAD
/
.
/
framework
/
resources
/
Functional
/
cttas
/
cttas_05.sql
blob: 231b2723ade391558b80ba8a5391c2689f433c00 [
file
] [
log
] [
blame
]
CREATE
TEMPORARY
TABLE
temp_tbl_05 PARTITION
BY
(
col_dt
)
AS
SELECT
*
FROM
typeall_l
;
SELECT
col_dt
FROM
temp_tbl_05
;
DROP
TABLE
temp_tbl_05
;