I am new to Streamlit-in-Snowflake and am using the Snowflake IDE (SnowSight).
I have the following command: data = session.sql(sql_statement).collect()
This works fine and Streamlit has the query executed and loads the results.
However, the .collect()
statement returns a Row Object.
How could I add three or more empty columns to this SQL result?
Finally, I’d like to use the result of this Object in a streamlit.data_editor
.
The added empty columns will be the editable-columns in the streamlit.data_editor
.