Querying Databricks Data
Prerequisites:
Query data with Python
Create a new workspace.
Query the Immuta-protected data as you normally would:
df = spark.sql('select * from database.table_name') df.show()
Query data with SQL
Create a new workspace.
Query the Immuta-protected data as you normally would:
select * from database.table_name;
Was this helpful?