I want to run the following query using Spark Python (pull data from Cassandra) similar to Oracle SQL:
select name, value, count(*) from table_name order by name, value
group by name....
any examples/samples will help, thanks!
I want to run the following query using Spark Python (pull data from Cassandra) similar to Oracle SQL:
select name, value, count(*) from table_name order by name, value
group by name....
any examples/samples will help, thanks!