Home > Backend Development > PHP Tutorial > 关于PHPMYADMIN跟MYSQL一些有关问题

关于PHPMYADMIN跟MYSQL一些有关问题

WBOY
Release: 2016-06-13 12:16:52
Original
828 people have browsed it

关于PHPMYADMIN跟MYSQL一些问题
*/
/* Table: sdb_admin_roles                                       */
/*==============================================================*/
create table sdb_admin_roles
(
    
   role_id                        int unsigned                   not null auto_increment,
    
   role_name                      varchar(100)                   not null,
    
   role_memo                      text                           not null,
    
   disabled                       enum('true','false')           not null default 'false',
   primary key (role_id)
)
type = MyISAM DEFAULT CHARACTER SET utf8;

/*==============================================================*/
/*
这个数据库表格哪里出错了丫?看不太懂丫
报错是这样的

------解决思路----------------------
type = MyISAM
这是什么?
ENGINE=MyISAM  

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template