+ -
当前位置:首页 → 问答吧 → 为什么不能创建两个数据库,哪位大哥知道麻烦说下咯

为什么不能创建两个数据库,哪位大哥知道麻烦说下咯

时间:2010-08-23

来源:互联网

mysql_query("create table `hy_book`(
`id` int(4) auto_increment,
`pwd` varchar(200) not null,
`name` varchar(100) not null,
`title` varchar(200) not null,
`book` tinytext not null,
`ip` varchar(50) not null,
`data` varchar(30) not null,
`mail` varchar(50) not null,
primary key (`id`)
) type=myisam charset=utf8;

create table `hy_look`(
`id` int(4) auto_increment,
`pwd` varchar(200) not null,
`name` varchar(100) not null,
primary key (`id`)
) type=myisam charset=utf8;");
麻烦帮我看下上面代码是哪里出问题了,

作者: heyongphp   发布时间: 2010-08-23

mysql_query一次只能执行一句

作者: 马甲   发布时间: 2010-08-23