赞
踩
mysql创建表格的1064错误,由于个人粗心导致。
代码如下:
- sql = '''
- create table if not exists movie250 (
- id_a integer primary key auto_increment,
- info_link text,
- pic_link text,
- c_name varchar,
- f_name varchar,
- b_score numeric,
- a_rated numeric,
- in_te text,
- info_movie text)
- '''
mysql对于varchar类型需要赋予长度
c_name varchar(50), f_name varchar(50),
添加长度以后就更改正确
赞
踩
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。