cancel
Showing results forย 
Search instead forย 
Did you mean:ย 
Warehousing & Analytics
Engage in discussions on data warehousing, analytics, and BI solutions within the Databricks Community. Share insights, tips, and best practices for leveraging data for informed decision-making.
cancel
Showing results forย 
Search instead forย 
Did you mean:ย 

AWS Databricks external tables are delta tables?

Akshay_Petkar
Contributor III

If I create an external table on AWS Databricks, will it be a Delta table? If not, is there a way to make it a Delta table, or is there no Delta capability for external tables?

Akshay Petkar
1 REPLY 1

Vidhi_Khaitan
Databricks Employee
Databricks Employee

Hi Akshay,

I believe you can try this for your use case ->

CREATE TABLE IF NOT EXISTS catalog.schema.my_external_table (
id INT,
name STRING,
age INT
)
USING delta
LOCATION '<location>'

This will create a delta table.