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

本文涉及的产品
云数据库 RDS MySQL Serverless,0.5-2RCU 50GB
云数据库 RDS MySQL Serverless,价值2615元额度,1个月
简介: __main__:1: Warning: Unknown table 'employ' 0Lfrom warnings import filterwarningsimport MySQLdbfilterwarnings('ignore', category = MySQLdb.

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

from warnings import filterwarnings
import MySQLdb filterwarnings('ignore', category = MySQLdb.Warning)


#!/usr/bin/env python
# -*- coding: UTF-8 -*-

import MySQLdb
from warnings import filterwarnings
filterwarnings('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()

 

相关实践学习
基于CentOS快速搭建LAMP环境
本教程介绍如何搭建LAMP环境,其中LAMP分别代表Linux、Apache、MySQL和PHP。
全面了解阿里云能为你做什么
阿里云在全球各地部署高效节能的绿色数据中心,利用清洁计算为万物互联的新世界提供源源不断的能源动力,目前开服的区域包括中国(华北、华东、华南、香港)、新加坡、美国(美东、美西)、欧洲、中东、澳大利亚、日本。目前阿里云的产品涵盖弹性计算、数据库、存储与CDN、分析与搜索、云通信、网络、管理与监控、应用服务、互联网中间件、移动服务、视频服务等。通过本课程,来了解阿里云能够为你的业务带来哪些帮助     相关的阿里云产品:云服务器ECS 云服务器 ECS(Elastic Compute Service)是一种弹性可伸缩的计算服务,助您降低 IT 成本,提升运维效率,使您更专注于核心业务创新。产品详情: https://www.aliyun.com/product/ecs
目录
相关文章
|
1月前
|
编解码 数据处理
|
5月前
|
关系型数据库 MySQL
MySQL 报错 [ERROR] [FATAL] InnoDB: Table flags are 0 in the data dictionary but the flags in file
MySQL 报错 [ERROR] [FATAL] InnoDB: Table flags are 0 in the data dictionary but the flags in file
403 0
|
21天前
|
缓存 IDE Linux
Internal error. Please report to https://jb.gg/ide/critical-startup-errors
Internal error. Please report to https://jb.gg/ide/critical-startup-errors
8 0
|
6月前
SQLSTATE[42S02]: Base table or view not found: 1146 Table ‘thinkphp.test‘ don‘t exsit
SQLSTATE[42S02]: Base table or view not found: 1146 Table ‘thinkphp.test‘ don‘t exsit
109 0
|
9月前
|
Java 开发工具 git
解决Error running XXXApplicationCommand line is too long.报错
解决Error running XXXApplicationCommand line is too long.报错
|
5月前
报错modify sync object Modify sync object Failed!
报错modify sync object Modify sync object Failed!
22 1
|
9月前
|
JavaScript
Error Unknown option ‘--inline‘
Error Unknown option ‘--inline‘
245 0
编译x264:avisynth_c.h:825:3: error: unknown type name ‘HMODULE‘
编译x264:avisynth_c.h:825:3: error: unknown type name ‘HMODULE‘
109 0
解决办法:error: unknown type name ‘__int64‘
解决办法:error: unknown type name ‘__int64‘
434 0
|
Linux
WARNING: Re-reading the partition table failed with error 22: Invalid argument
在划分磁盘分区时,遇到错误“WARNING: Re-reading the partition table failed with error 22: Invalid argument” 如下所示: [root@DB-Server u02]# fdisk -l   Disk /dev/sda: 500.
2473 0