MySql命令——表相关
auto_increment //自动增长
primary key(id) //指定主键
select last_insert_id();//获得添加列的主键值
create table product ( id int not null auto_increment, note text null, primary key(id) ) engine=InnoDB;
engine=InnoDB;
MySql与其他DBMS不一样,它具有多种引擎。它打包多个引擎,这些引擎都隐藏在MySql服务器内,全都能执行 create table 和 select 命令。
InnoDB:一个可靠的事务处理引擎,不支持全文本搜索;
MyISAM:支持全文本搜索,不支持事务处理;
Memory:功能等同于MyISAM,但由于数据存储在内存中,速度很快。
重命名表: rename table product to cp;//把 product 表名称修改为 cp