Comment on What Happens When You Put a Database in the Browser?parentComments−zX41ZdbW2yI have an example of a database hosted on GitHub: https://github.com/ClickHouse/web-tables-demoWhich you can query anywhere using a ClickHouse local database engine.When you do a query, it downloads only the required ranges of required columns from the server and does computations on your machine.In the same way you can query any data sources with ClickHouse, either local or remote, which is a strict superset in power and usability than duckdb.
Comments
I have an example of a database hosted on GitHub: https://github.com/ClickHouse/web-tables-demo
Which you can query anywhere using a ClickHouse local database engine.
When you do a query, it downloads only the required ranges of required columns from the server and does computations on your machine.
In the same way you can query any data sources with ClickHouse, either local or remote, which is a strict superset in power and usability than duckdb.