tencent cloud

Data Lake Compute

Política DLC
Política de privacidade
Contrato de Privacidade e Seguranca de dados
DocumentaçãoData Lake Compute

REPLACE TABLE AS SELECT

Modo Foco
Tamanho da Fonte
Última atualização: 2024-08-07 17:12:31

Description

Supported engine: SparkSQL
Applicable table: External and native Iceberg tables
Purpose: Replace the table and update the snapshot while retaining the table history.

Statement

CREATE [OR REPLACE] TABLE table_identifier
USING iceberg
[ COMMENT table_comment ]
[ PARTITIONED BY ( col_name1, transform(col_name2), ... ) ]
[ LOCATION path ]
[ TBLPROPERTIES ( property_name=property_value, ... ) ]
AS select_statement

Example

CREATE OR REPLACE TABLE dempts_replace
USING iceberg
COMMENT 'table create as replace'
PARTITIONED BY (eno, dno)
TBLPROPERTIES ('write.format.default'='avro')
LOCATION '/warehouse/db_001/dempts_replace'
AS SELECT * from dempts;




Ajuda e Suporte

Esta página foi útil?

comentários