Quantcast
Channel: Active questions tagged python - Stack Overflow
Viewing all articles
Browse latest Browse all 13861

Is there a way to print a pyspark command as a SQL query?

$
0
0

I am reading from a Delta Table and performing some column selection and filtering using pyspark.

columns == ['a', 'b', 'c']data = spark.read.load(PATH).select(*columns).where(f.col('a').like('%test%'))

What I would like to obtain is a SQL query representing the above operation, like:

select {*columns}from PATHwhere a like '%test%'

Is there any spark function able to do this?


Viewing all articles
Browse latest Browse all 13861

Trending Articles