在 Azure databrick 中创建或替换表问题

问题描述 投票:0回答:1

我无法在使用创建或替换的地方更新脚本 - '''' 创建或替换表 tablexxx;

CREATE TABLE IF NOT EXISTS tablexxx USING DELTA LOCATION '$datalake/location'; ''''

azure databricks
1个回答
0
投票

使用下面的代码。它对我来说很好用:

%sql

CREATE OR REPLACE TABLE table3 (
    PersonID int,
    LastName varchar(255),
    City varchar(255)
)
USING DELTA
OPTIONS (
  'path' 'mnt/location/table2'
)

enter image description here

© www.soinside.com 2019 - 2024. All rights reserved.