Instant low-code DATA API platform for 30x faster application development. Connect any database, run anywhere. Power your GENAI application function calls
SELECT * FROM mysql.db.table -- MySQL Server
LEFT JOIN mssql.db.table -- Microsoft SQL Server
ON mysql.db.table.id = mssql.db.table.id.id
SELECT * FROM mysql_srv1.db.table -- MySQL Server 1
LEFT JOIN mysql_srv2.db.table -- MySQL Server 2
ON mysql_srv1.db.table.id = mysql_srv2.db.table.id.id
It would be great to have the ability to query and join data across multiple data-sources.
An example of that implementation is used by https://trino.io/
An example query would be"
Except tables, support also VIEWS.