We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Postgres allows accessing other databases via its FDW API. For SQLite, there are things like
https://github.com/mergestat/dblite
and
https://github.com/frectonz/pglite-fusion
But perhaps Limbo can do something more native here?
The text was updated successfully, but these errors were encountered:
IMO Clickhouse nailed it with table functions
Examples:
SELECT * FROM file('test.csv', 'CSV', 'column1 UInt32, column2 UInt32, column3 UInt32') LIMIT 2; INSERT INTO TABLE FUNCTION file('test.tsv', 'TSV', 'column1 UInt32, column2 UInt32, column3 UInt32') VALUES (1, 2, 3), (3, 2, 1), (1, 3, 2) SELECT * FROM s3( 'https://datasets-documentation.s3.eu-west-3.amazonaws.com/aapl_stock.csv', 'CSVWithNames' ) LIMIT 5; SELECT name FROM mysql(`mysql{1|2|3}:3306`, 'mysql_database', 'mysql_table', 'user', 'password');
Sorry, something went wrong.
No branches or pull requests
Postgres allows accessing other databases via its FDW API. For SQLite, there are things like
https://github.com/mergestat/dblite
and
https://github.com/frectonz/pglite-fusion
But perhaps Limbo can do something more native here?
The text was updated successfully, but these errors were encountered: