cancel
Showing results forย 
Search instead forย 
Did you mean:ย 
Data Engineering
Join discussions on data engineering best practices, architectures, and optimization strategies within the Databricks Community. Exchange insights and solutions with fellow data engineers.
cancel
Showing results forย 
Search instead forย 
Did you mean:ย 

Difference between "spark.table" & "spark.read.table"?

Mado
Valued Contributor II

Hi,

I want to make a PySpark DataFrame from a Table. I would like to ask about the difference of the following commands:

spark.read.table(TableName)

&

spark.table(TableName)

Both return PySpark DataFrame and look similar. Thanks.

1 ACCEPTED SOLUTION

Accepted Solutions

User16826993570
New Contributor III

There is no difference between spark.table & spark.read.table function.

Inside of spark.read.table is again calling spark.table function.

View solution in original post

2 REPLIES 2

User16826993570
New Contributor III

There is no difference between spark.table & spark.read.table function.

Inside of spark.read.table is again calling spark.table function.

Mado
Valued Contributor II

Hi @Kaniz Fatmaโ€‹ 

I selected answer from @Kedar Deshpandeโ€‹ as the best answer.