How do I escape a query string in Spark SQL?
Hey all, I am trying to filter on a string but the string has a single quote - how do I escape the string in Scala? I have tried an old version of StringEscapeUtils but no luck. Sorry if a silly question - new to Scala.import org.apache.commons.lan...
- 10834 Views
- 2 replies
- 0 kudos
Latest Reply
generally when u deal with apostrophe u replace the the single quote(') with (''). More about....handling single quotes Antonio
- 0 kudos