- Python 和 MySQL 教程
- Python 和 MySQL - 主页
- Python 和 MySQL - 概述
- Python 和 MySQL - 环境设置
- Python 和 MySQL 示例
- Python 和 MySQL - 连接数据库
- Python 和 MySQL - 创建数据库
- Python 和 MySQL - 删除数据库
- Python 和 MySQL - 选择数据库
- Python 和 MySQL - 创建表
- Python 和 MySQL - 删除表
- Python 和 MySQL - 插入记录
- Python 和 MySQL - 选择记录
- Python 和 MySQL - 更新记录
- Python 和 MySQL - 删除记录
- Python 和 MySQL -Where 子句
- Python 和 MySQL - Like 子句
- Python 和 MySQL - 数据排序
- Python 和 MySQL - 使用联接
- Python 和 MySQL - 执行事务
- Python 和 MySQL - 处理错误
- Python 和 MySQL 有用资源
- Python 和 MySQL - 快速指南
- Python 和 MySQL - 有用的资源
- Python 和 MySQL - 讨论
Python 和 MySQL - 创建表
Python 使用c.execute(q)函数创建一个表,其中 c 是光标,q 是要执行的查询。
句法
# execute SQL query using execute() method. cursor.execute(sql)
先生。 | 参数及说明 |
---|---|
1 | $sql 必需 - 用于创建表的 SQL 查询。 |
例子
尝试以下示例来创建一个表 -
将以下示例复制并粘贴为 mysql_example.ty -
#!/usr/bin/python import MySQLdb # Open database connection db = MySQLdb.connect("localhost","root","root@123", "TUTORIALS") # prepare a cursor object using cursor() method cursor = db.cursor() sql = """CREATE TABLE tutorials_tbl( tutorial_id INT NOT NULL AUTO_INCREMENT, tutorial_title VARCHAR(100) NOT NULL, tutorial_author VARCHAR(40) NOT NULL, submission_date DATE, PRIMARY KEY ( tutorial_id )); """; # execute SQL query using execute() method. cursor.execute(sql) print('tutorials_tbl created') # disconnect from server db.close()
输出
使用 python 执行 mysql_example.py 脚本并验证输出。
tutorials_tbl created