cancel
Showing results for 
Search instead for 
Did you mean: 
Data Engineering
Join discussions on data engineering best practices, architectures, and optimization strategies within the Databricks Community. Exchange insights and solutions with fellow data engineers.
cancel
Showing results for 
Search instead for 
Did you mean: 

insert into a table with an identity column fails

nbakh
New Contributor II

i am trying to insert into a table with an identity column using a select query.

However, if i include the identity column or ignore the identity column in my insert it throws errors. Is thee a way to insert into select * from a table if the insert table has an identity column?

%sql

CREATE OR REPLACE TABLE demo (

 id BIGINT GENERATED ALWAYS AS IDENTITY,

 product_type STRING,

 sales BIGINT

);

%sql

insert into demo_test

SELECT id,product_type, sales from demo

AnalysisException: Providing values for GENERATED ALWAYS AS IDENTITY column id is not supported.

%sql

insert into demo_test

SELECT product_type, sales from demo

nalysisException: Cannot write to 'spark_catalog.default.demo_test', not enough data columns; target table has 3 column(s) but the inserted data has 2 column(s)

3 REPLIES 3

Debayan
Databricks Employee
Databricks Employee

Hi, Looks like it is not supported.

Please refer: https://github.com/delta-io/delta/issues/1215

Hubert-Dudek
Esteemed Contributor III

instead of using

GENERATED ALWAYS AS IDENTITY,

you need to use

GENERATED BY DEFAULT AS IDENTITY

karan_singh
New Contributor II

Hi, 

Specify insert columns as below

 
%sql
INSERT INTO demo_test (product_type, sales)
SELECT product_type, sales FROM demo

Connect with Databricks Users in Your Area

Join a Regional User Group to connect with local Databricks users. Events will be happening in your city, and you won’t want to miss the chance to attend and share knowledge.

If there isn’t a group near you, start one and help create a community that brings people together.

Request a New Group