Querying data with sql statements instead of dataframe API? #6336
-
Hi all is it possible to actually execute a given SQL statement against the backend of choice instead of using the Dataframe API? I am using MSSQL. I know that may defeat the purpose of using Ibis in the first place. However, I am a building a Web API and there are features of Ibis I want to use with the Dataframe API but at the same time I would like to have an end point on my API that takes in a SQL string and executes that. Thanks! |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 2 replies
-
Hi @nikhilmakan02 👋🏻! Welcome to ibis, and thanks for opening up a discussion about this.
Indeed it is possible. You can do this with the
|
Beta Was this translation helpful? Give feedback.
Hi @nikhilmakan02 👋🏻! Welcome to ibis, and thanks for opening up a discussion about this.
Indeed it is possible.
You can do this with the
Backend.sql
method, or with theTable.sql
method.Backend.sql