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

