I\'m trying to run an insert statement with my HiveContext, like this:
hiveContext.sql(\'insert into my_table (id, score) values (1, 10)\')
Th
When you first time do this
$data.write.mode("append").saveAsTable("my_table")
you should replace "append" with "overwrite", Then, you can use "append".
"append"
"overwrite"