What’s an id column?
An id column is a column in a database that mechanically generates a singular ID quantity for every new row of knowledge. This quantity just isn’t associated to the row’s content material.
Identification columns are a type of surrogate keys. In knowledge warehouses, it is not uncommon to make use of a further key, referred to as a surrogate key, to uniquely establish every row and hold observe of modifications to the info over time. Moreover, it is suggested to make use of surrogate keys over pure keys. Surrogate keys are techniques generated and never reliant on a number of fields to establish the distinctiveness of the row.
So, id columns are used to create surrogate keys, which may function major and international keys in dimensional fashions for knowledge warehouses and knowledge marts. As seen beneath, these keys are the columns that join completely different tables to at least one one other in a conventional dimensional mannequin like a star schema.

Conventional approaches to generate surrogate keys on knowledge lakes
Most massive knowledge applied sciences use parallelism, or the power to divide a activity into smaller components that may be accomplished on the identical time, to enhance efficiency. Within the early days of knowledge lakes, there was no simple method to create distinctive sequences over a gaggle of machines. This led to some knowledge engineers utilizing much less dependable strategies to generate surrogate keys and not using a correct function, equivalent to:
monotonically_increasing_id(),
row_number(),
Rank OVER,
ZipWithIndex(),
ZipWithUniqueIndex(),
- Row Hash with
hash(),
and - Row Hash with
md5()
.
Whereas these capabilities are capable of get the job achieved underneath sure circumstances, they’re usually fraught with many warnings and caveats round sparsely populating the sequences, efficiency points at scale, and concurrent transaction points.
Databases have been capable of generate sequences for the reason that early days, to generate surrogate keys to uniquely establish a row of knowledge with the help of a centralized transaction supervisor. Nevertheless, typical implementations require locks and transactional commits, which might be troublesome to handle.
Identification columns on Delta Lake make producing surrogate keys simpler
Identification columns clear up the problems talked about above and supply a easy, performant resolution for producing surrogate keys. Delta Lake is the primary knowledge lake protocol to allow id columns for surrogate key technology.
Delta Lake now helps creating IDENTITY
columns that may mechanically generate distinctive, auto-incrementing ID numbers when new rows are loaded. Whereas these ID numbers is probably not consecutive, Delta makes the very best effort to maintain the hole as small as attainable. You should utilize this function to create surrogate keys in your knowledge warehousing workloads simply.
Tips on how to create a surrogate key with an id column utilizing SQL and Delta Lake
[Recommended] Generate At all times As Identification
Creating an id column in SQL is so simple as making a Delta Lake desk. When declaring your columns, add a column identify referred to as id
, or no matter you want, with an information kind of BIGINT
, then enter GENERATED ALWAYS AS IDENTITY
.
Now, each time you carry out an operation on this desk the place you insert knowledge, omit this column from the insert, and Delta Lake will mechanically generate a singular worth for the IDENTITY
column for every row inserted into the Delta Lake desk.
Right here is a straightforward instance of how one can use id columns in Delta Lake:
CREATE OR REPLACE TABLE demo (
id BIGINT GENERATED ALWAYS AS IDENTITY,
product_type STRING,
gross sales BIGINT
);
Going ahead, the id column titled “id
” will auto-increment everytime you insert new data into the desk. You’ll be able to then insert new knowledge like so:
INSERT INTO demo (product_type, gross sales)
VALUES ("Batteries", 150000);
Discover how the surrogate key column titled “id
” is lacking from the INSERT
a part of the assertion. Delta Lake will populate the surrogate keys when it writes the desk to cloud object storage (e.g. AWS S3, Azure Information Lake Storage, or Google Cloud Storage). Study extra within the documentation.
Generate by DEFAULT
There may be additionally the GENERATED BY DEFAULT AS IDENTITY
choice, which permits the id insertion to be overridden, whereas the ALWAYS
choice can’t be overridden.
There are a number of caveats it’s best to have in mind when adopting this new function. Identification columns can’t be added to current tables; the tables will have to be recreated with the brand new id column added. To do that, merely create a brand new desk DDL with the id column, and insert the prevailing columns into the brand new desk, and surrogate keys might be generated for the brand new desk.
Get began with Identification Columns with Delta Lake on Databricks SQL right this moment
Identification Columns are actually GA (Typically Accessible) in Databricks Runtime 10.4+ and in Databricks SQL 2022.17+. With id columns, now you can allow all of your knowledge warehousing workloads to have all the advantages of a Lakehouse structure, accelerated by Photon. Check out id columns on Databricks SQL right this moment.