from pandas.io import sql
sql.execute('SELECT * FROM table_name', engine)
sql.execute('INSERT INTO table_name VALUES(?, ?, ?)', engine, params=[('id', 1, 12.2, True)])



http://pandas.pydata.org/pandas-docs/stable/io.html#id3

相关文章:

  • 2021-11-17
  • 2022-12-23
  • 2021-10-10
  • 2021-05-24
  • 2021-10-24
  • 2022-02-28
  • 2022-12-23
  • 2022-12-23
猜你喜欢
  • 2021-08-16
  • 2022-01-30
  • 2021-09-21
  • 2022-12-23
  • 2021-08-31
  • 2021-10-19
  • 2021-10-09
相关资源
相似解决方案