Is Entity Relationship Diagram (ERD) available for Delta Live Tables in Databricks?
I am trying to use ERD for my code but i am not able to, can someone help me. Thanks in advance. For instance –
CREATE TEMPORARY STREAMING LIVE VIEW cust_silver
COMMENT ‘CUSTOMER DATA SILVER’
AS
SELECT cust_id, cust_name, cust_dob, cust_address, BadpDatetime
from STREAM(pool
.details
.customer_database
);