Querying data
Execute a query
import redivis
# Execute any SQL query and read the results
query = redivis.query("SELECT 1 + 1 AS two, 'foo' AS bar")
query.to_pandas_dataframe()
# two bar
# 0 2 foo
# The query can reference any table on Redivis
query = redivis.query("""
SELECT *
FROM demo.iris_species.iris
WHERE SepalLengthCm > 5
""")
query.to_pandas_dataframe()
# Id SepalLengthCm SepalWidthCm PetalLengthCm PetalWidthCm Species
# 0 33 5.2 4.1 1.5 0.1 Iris-setosa
# ...
# Other methods to read data:
# query.to_arrow_batch_iterator()
# query.to_arrow_dataset()
# query.to_arrow_dataset()
# query.to_geopandas_dataframe()
# query.to_dask_dataframe()
# query.to_polars_lazyframe()Execute a scoped query
Run a query within a Redivis notebook
Was this helpful?

