SQL select queries
In order to support as many data-backends as possible, Superduper supports the ibis
query API to build SQL queries.
With Superduper one would write:
t = db['my_table']
result = t.filter(t.brand == 'Nike').execute()
In order to support as many data-backends as possible, Superduper supports the ibis
query API to build SQL queries.
With Superduper one would write:
t = db['my_table']
result = t.filter(t.brand == 'Nike').execute()