国内最全IT社区平台 联系我们 | 收藏本站
华晨云阿里云优惠2
您当前位置:首页 > 数据库 > MySql > 关于Mysql的英文 请教是什么问题

关于Mysql的英文 请教是什么问题

来源:程序员人生   发布时间:2014-05-26 22:25:58 阅读次数:3707次

  网(LieHuo.Net)教程 请教以下MYSQL英文的意思是什么?

以下为引用的内容:
The automatic index on the primary key takes care of the index required by AUTO_INCREMENT.

最佳答案:

这句话应该是摘自 《PHP and MySQL Web development》 这本书

楼主之把其中一句单独取出来,让人很难理解。上下文是这样的

PRIMARY KEY after a column name specifies that this cloumn is the primary key for the table. Entries in this column have to be unique. MySQL will automatically index this column. Notice that where we've used it above with customerid in the customers table we've used it with AUTO_INCREMENT. The automatic index on the primary key takes care of the index required by AUTO_INCREMENT.

customers 的表结构是这样的

create table customers

(

customerid int unsigned not null auto_increment primary key,

name char(30) not null,

address char(40) not null,

city char(20) not null

);

从整个上下文的意思来看

这句话应该理解为 主键的自动索引可以支持自增长类型的索引。或者直接从字面翻译就是

主键的自动索引已经考虑到(照顾到)了对自增长类型的索引的支持

生活不易,码农辛苦
如果您觉得本网站对您的学习有所帮助,可以手机扫描二维码进行捐赠
程序员人生
------分隔线----------------------------
分享到:
------分隔线----------------------------
关闭
程序员人生