python与mysql交互下的简单购物系统

在学习python与MySQL的交互的过程中,遇到过许多问题,磕磕盼盼的写下了一个简单的购物系统附代码如下: mysql数据表的创建sql语句
# 创建顾客表
create table GUEST_INFO(
id int unsigned primary key auto_increment not null,
name varchar(20) not null,
address varchar(20),
tel int(12) not null,
password varchar(20) not null );

# 修改表名
alter table GUEST_INFO rename to CUSTOMER_INFO;

# 创建订单表
create table ORDER_INFO(
id int unsigned primary key auto_increment not null,

python与mysql交互下的简单购物系统最先出现在Python成神之路

版权声明:
作者:cc
链接:https://www.techfm.club/p/14119.html
来源:TechFM
文章版权归作者所有,未经允许请勿转载。

THE END
分享
二维码
< <上一篇
下一篇>>