I am using spark-sql.2.3.1 and I am connecting to oracleDB to fetch the dataframe
Code : >' ora_df
.option("schema",schema)
.option("partitionColumn", partitionColumn)
.option("dbtable", query)
.load()
> '
Issue : I would like to filter the table with date. So is there anyway to pass the query with dynamically build where clause?