Am trying to use SQL, but createOrReplaceTempView("myDataView") fails.
I can create and display a DataFrame fine...
import pandas as pd
df = pd.DataFrame(['$3,000,000.00','$3,000.00', '$200.5', '$5.5'], columns = ['Amount'])
df
I add another cell, ...