问题描述
- 求帮我看看代码错在哪里?
-
准备用mysql做一个表,建表语句如下:
create table tv_play(
name varchar(40) not null,
country of origin varchar(40) not null,
production company varchar(40) not null,
genre varchar(40) not null);结果显示语法错误,求指明错误所在。
解决方案
country of origin 可以空格吗
解决方案二:
create table tv_play(name
varchar(40) not null,
country_of_origin varchar(40) not null,
production_company varchar(40) not null,
genre varchar(40) not null);
解决方案三:
create table tv_play(
name varchar(40) not null,
country_of_origin varchar(40) not null,
production_company varchar(40) not null,
genre varchar(40) not null);
解决方案四:
production company也是,中间不能有空格。。。可以用下划线连接。。。。
解决方案五:
production company也是,中间不能有空格。。。可以用下划线连接。。。。
解决方案六:
column(字段名)不能有空格的,可以用下划线
解决方案七:
唉这么多空格,你要累死mysql语法检查器啊!字段名不能用空格,用_下滑线啊。
时间: 2024-11-20 15:50:00