Answers for "pandas create table from dataframe"

SQL
25

dataframe create

>>> df2 = pd.DataFrame(np.array([[1, 2, 3], [4, 5, 6], [7, 8, 9]]),
...                    columns=['a', 'b', 'c'])
>>> df2
   a  b  c
0  1  2  3
1  4  5  6
2  7  8  9
Posted by: Guest on May-14-2020
2

pandas to sql index

resultDf.to_sql('table_name', engine, schema="schema_name", if_exists="append", index=False)
Posted by: Guest on August-10-2020
1

df to sql pandas sql achemy

from sqlalchemy import create_engine
engine = create_engine('sqlite://', echo=False)
df.to_sql('users', con=engine)
engine.execute("SELECT * FROM users").fetchall()
Posted by: Guest on September-09-2020

Code answers related to "pandas create table from dataframe"

Code answers related to "SQL"

Browse Popular Code Answers by Language