博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
__main__:1: Warning: Unknown table 'employ' 0L
阅读量:5997 次
发布时间:2019-06-20

本文共 755 字,大约阅读时间需要 2 分钟。

__main__:1: Warning: Unknown table 'employ' 0L

from warnings import filterwarningsimport MySQLdb filterwarnings('ignore', category = MySQLdb.Warning)
#!/usr/bin/env python# -*- coding: UTF-8 -*-import MySQLdbfrom warnings import filterwarningsfilterwarnings('ignore',category = MySQLdb.Warning)#打开数据库连接db = MySQLdb.connect("localhost","root","","ruiy")#使用cursor()方法获取操作游标cursor = db.cursor();#如果数据表已经存在使用execute()方法删除表cursor.execute("drop table if exists employee")#创建数据表SQL语句sql = """create table employee (        first_name char(20) not null,        last_name char(20),        age int,        sex char(1),        income float )"""cursor.execute(sql)db.close()

 

 
posted on
2016-11-19 16:04 阅读(
...) 评论(
...)

转载于:https://www.cnblogs.com/ruiy/p/6080752.html

你可能感兴趣的文章
PostgreSQL 10.1 手册_部分 IV. 客户端接口_第 33 章 libpq - C 库_33.21. 例子程序
查看>>
iOS 性能优化
查看>>
Spread for Windows Forms高级主题(7)---自定义打印的外观
查看>>
【循序渐进学Python】5.Python常用流程控制及其他语句
查看>>
[LeetCode] Intersection of Two Arrays II 两个数组相交之二
查看>>
winpcap 发送数据包
查看>>
在centos系统shell脚本中cat和重定向符号<<EOF结合使用的注意事项
查看>>
cisco 出现 %Error opening tftp://255.255.255.255 错误解决办法
查看>>
VIM编辑器
查看>>
IE主页被篡改 地址框变灰
查看>>
在交换机上配置Telent
查看>>
linux上架设l2tp+ipsec ***服务器
查看>>
jenkins pipeline dotnet 编译模板
查看>>
土木工程师资料管理系统EngineerCMS
查看>>
lua 简单实现 面向对象
查看>>
PHP与JSP的比较
查看>>
ASP.NET MVC4使用JCrop裁剪图片并上传
查看>>
Forget Java to learn Javascript from 0.--Day 1
查看>>
centos7使用haproxy1.7.5实现反向代理负载均衡实战
查看>>
jQuery- 表单验证插件-Validation
查看>>