cancel
Showing results forย 
Search instead forย 
Did you mean:ย 
Get Started Discussions
Start your journey with Databricks by joining discussions on getting started guides, tutorials, and introductory topics. Connect with beginners and experts alike to kickstart your Databricks experience.
cancel
Showing results forย 
Search instead forย 
Did you mean:ย 

Selective column loader unity catalog

vk217
Contributor

I am loading a table into a data frame using

 

df = spark.table(table_name)

 

Is there a way to load only the required columns? The table has more than 50+ columns and I only need a handful of column.

1 ACCEPTED SOLUTION

Accepted Solutions

daniel_sahal
Esteemed Contributor

@vk217 Simply just use select function, ex.

df = spark.read.table(table_name).select("col1", "col2", "col3")

View solution in original post

1 REPLY 1

daniel_sahal
Esteemed Contributor

@vk217 Simply just use select function, ex.

df = spark.read.table(table_name).select("col1", "col2", "col3")
Join 100K+ Data Experts: Register Now & Grow with Us!

Excited to expand your horizons with us? Click here to Register and begin your journey to success!

Already a member? Login and join your local regional user group! If there isn’t one near you, fill out this form and we’ll create one for you to join!