python creat table
时间: 2023-05-01 20:06:46 浏览: 147
create table
5星 · 资源好评率100%
创建表在Python中可以使用SQL语句,在SQLite数据库中可以使用SQLite库来执行SQL语句。例如,使用以下代码创建一个名为students的表:
```
import sqlite3
# 连接到SQLite数据库
conn = sqlite3.connect('test.db')
# 创建一个游标对象
cursor = conn.cursor()
# 创建students表的SQL语句
create_table_sql = '''
CREATE TABLE students (
id INT PRIMARY KEY NOT NULL,
name TEXT NOT NULL,
age INT NOT NULL,
sex CHAR(10)
);
'''
# 执行SQL语句
cursor.execute(create_table_sql)
# 关闭游标和连接
cursor.close()
conn.close()
```
这个例子创建了一个包含id、name、age和sex四个字段的students表。其中id是主键,不能为空。执行execute(create_table_sql)语句后,students表就被创建了。
阅读全文