数据库非查询语句

  • Post author:
  • Post category:其他


#执行非查询语句时需要用cursor
cursor = conn.cursor()
sql2="ALTER TABLE `equ_spec_cond` MODIFY COLUMN `REMARK` varchar(1000) DEFAULT NULL;"
cursor.execute(sql2)
sql="show columns from equ_spec_cond"
df = pd.read_sql(sql, conn)



版权声明:本文为weixin_42795763原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接和本声明。