我在 MySQL 服务器 5.2 中的 create table 语句中收到错误消息。错误信息是
1064(42000):我的sql语法
我的查询是:
create table places(
place_id int(10) not null auto_increment,
p_name varchar(15) not null,
lat float(15,11) not null,
primary key(place_id)
);
我在 MySQL 服务器 5.2 中的 create table 语句中收到错误消息。错误信息是
1064(42000):我的sql语法
我的查询是:
create table places(
place_id int(10) not null auto_increment,
p_name varchar(15) not null,
lat float(15,11) not null,
primary key(place_id)
);