Pandas have read_sql
to read a query from database directly in database.
query = "select top 100 * from TABLE"
df=pd.read_sql(query, redshift_conn)
Can I do the same thing using Vaex? Vaex is not having to_sql so, I was converting vaex dataframe into pandas and then using pandas to_sql to dump the data into database. Should I do the same for reading too?