目标
- 学习如何使用SQL语句创建表。
- 掌握如何删除表。
内容
- SQL语句详解。
- 创建表的SQL语句。
- 删除表的SQL语句。
示例代码
import sqlite3
conn = sqlite3.connect('test.db')
cursor = conn.cursor()
# 创建表
cursor.execute('create table if not exists user (id int primary key, name text)')
# 插入一条记录
cursor.execute('insert into user (id, name) values (?, ?)', (1, 'Alice'))
# 提交事务
conn.commit()
# 查看表信息
cursor.execute('select * from user')
print(cursor.fetchall())
# 删除表
cursor.execute('drop table user')
conn.commit()
cursor.close()
conn.close()