加入收藏 | 设为首页 | 会员中心 | 我要投稿 李大同 (https://www.lidatong.com.cn/)- 科技、建站、经验、云计算、5G、大数据,站长网!
当前位置: 首页 > 站长学院 > MySql教程 > 正文

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

发布时间:2020-12-12 02:19:21 所属栏目:MySql教程 来源:网络整理
导读:网( LieHuo.Net )教程 请教以下MYSQL英文的意思是什么? 以下为引用的内容: The automatic index on the primary key takes care of the index required by AUTO_INCREMENT. 最佳答案: 这句话应该是摘自 《PHP and MySQL Web development》 这本书 楼主之
以下为引用的内容:
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

);

从整个上下文的意思来看

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

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

(编辑:李大同)

【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容!

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

    推荐文章
      热点阅读