create table blog(id int primary key not null auto_increment,type varchar(10),name varchar(10),num int(11),site varchar(10),content varchar(100))TYPE=innoDB;
create table blog(id int primary key not null auto_increment,type varchar(10),name varchar(10),num int(11),site varchar(10),content varchar(100))TYPE=innoDB;
CREATE TABLE `blog`
(
`id` INT NOT NULL auto_increment,
`type` VARCHAR(10) NULL,
`name` VARCHAR(10) NULL,
`num` INT(11) NULL,
`site` VARCHAR(10) NULL,
`content` VARCHAR(100) NULL,
PRIMARY KEY (`id`)
)
engine=innodb
DEFAULT CHARACTER SET=utf8
COLLATE=utf8_general_ci;
create table blog(
id int primary key not null auto_increment,
type varchar(10),
name varchar(10),
num int(11),
site varchar(10),
content varchar(100)
)engine=innoDB;用engine = innodb代替type = innodb。type在5.1版本已经废弃了。
PHP经典实例(第2版)能够为您节省宝贵的Web开发时间。有了这些针对真实问题的解决方案放在手边,大多数编程难题都会迎刃而解。《PHP经典实例(第2版)》将PHP的特性与经典实例丛书的独特形式组合到一起,足以帮您成功地构建跨浏览器的Web应用程序。在这个修订版中,您可以更加方便地找到各种编程问题的解决方案,《PHP经典实例(第2版)》中内容涵盖了:表单处理;Session管理;数据库交互;使用We
470
每个人都需要一台速度更快、更稳定的 PC。随着时间的推移,垃圾文件、旧注册表数据和不必要的后台进程会占用资源并降低性能。幸运的是,许多工具可以让 Windows 保持平稳运行。
Copyright 2014-2025 https://www.php.cn/ All Rights Reserved | php.cn | 湘ICP备2023035733号