I'm getting to my through logstash into elasticsearch. I import the data in databricks, first through a python scan and then transforming the data into a dataframe The dataframe is then converted into temporary view within databricks. This view can then be used in sql modeling. This process can't be altered
When I query: Select * from tempview then I get all columns :)
Now the challenge: One of my field names is called @timestamp and I can see the databricks display that the column is there, but I can not select the column itself. In T-SQL I would have been able to use squarebrackets [@timestamp] and move on, but it does not work in hivesql.
I know that the @name syntax is reserved for sql variables, but is there a workaround?
