

# ALTER TABLE UNSET TBLPROPERTIES
<a name="querying-iceberg-alter-table-unset-properties"></a>

Iceberg 테이블에서 기존 속성을 삭제합니다.

## 시놉시스
<a name="querying-iceberg-alter-table-unset-properties-synopsis"></a>

```
ALTER TABLE [db_name.]table_name UNSET TBLPROPERTIES ('property_name' [ , ... ])
```

## 예제
<a name="querying-iceberg-alter-table-unset-properties-example"></a>

```
ALTER TABLE iceberg_table UNSET TBLPROPERTIES ('write_compression')
```

다음 예제에서는 Iceberg 테이블에서 `write.data.path` 속성을 제거합니다.

```
ALTER TABLE iceberg_table UNSET TBLPROPERTIES ('write.data.path')
```