免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
最近访问板块 发新帖
查看: 8351 | 回复: 4
打印 上一主题 下一主题

索引与约束条件的关系 [复制链接]

论坛徽章:
1
摩羯座
日期:2013-09-28 17:07:31
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2013-09-23 21:08 |只看该作者 |倒序浏览
create table user (userid int(10) primary key not null unique auto_increment,username varchar(20) not null,passwd varchar(20) not null,info text,unique index index_uid(userid asc),index index_user (username,passwd),fulltext index idex_info(info) );


mysql> show index from user\G
*************************** 1. row ***************************
        Table: user
   Non_unique: 0
     Key_name: PRIMARY
Seq_in_index: 1
  Column_name: userid
    Collation: A
  Cardinality: 0
     Sub_part: NULL
       Packed: NULL
         Null:
   Index_type: BTREE
      Comment:
Index_comment:
*************************** 2. row ***************************
        Table: user
   Non_unique: 0
     Key_name: userid
Seq_in_index: 1
  Column_name: userid
    Collation: A
  Cardinality: 0
     Sub_part: NULL
       Packed: NULL
         Null:
   Index_type: BTREE
      Comment:
Index_comment:
*************************** 3. row ***************************
        Table: user
   Non_unique: 0
     Key_name: index_uid
Seq_in_index: 1
  Column_name: userid
    Collation: A
  Cardinality: 0
     Sub_part: NULL
       Packed: NULL
         Null:
   Index_type: BTREE
      Comment:
Index_comment:
*************************** 4. row ***************************
        Table: user
   Non_unique: 1
     Key_name: index_user
Seq_in_index: 1
  Column_name: username
    Collation: A
  Cardinality: 0
     Sub_part: NULL
       Packed: NULL
         Null:
   Index_type: BTREE
      Comment:
Index_comment:
*************************** 5. row ***************************
        Table: user
   Non_unique: 1
     Key_name: index_user
Seq_in_index: 2
  Column_name: passwd
    Collation: A
  Cardinality: 0
     Sub_part: NULL
       Packed: NULL
         Null:
   Index_type: BTREE
      Comment:
Index_comment:
*************************** 6. row ***************************
        Table: user
   Non_unique: 1
     Key_name: idex_info
Seq_in_index: 1
  Column_name: info
    Collation: NULL
  Cardinality: 0
     Sub_part: NULL
       Packed: NULL
         Null: YES
   Index_type: FULLTEXT
      Comment:
Index_comment:
6 rows in set (0.01 sec)


第二个index是unique约束条件,可以用drop index userid on user;删除的,,为什么可以这样删除了,我想mysql是把他作为一种索引了吧!既然如此,primary也是一种索引,也可按照这样来删除掉,但事实是不行的,这是为什么!

论坛徽章:
1
摩羯座
日期:2013-09-28 17:07:31
2 [报告]
发表于 2013-09-24 16:39 |只看该作者
有没有人解释下primary key为什么不能用 drop index primary on user这条删除????

论坛徽章:
0
3 [报告]
发表于 2013-09-24 16:58 |只看该作者
primary key的删除方法是这样的:
DROP INDEX `PRIMARY` ON user;
和普通的删除方法有所不同。

论坛徽章:
1
摩羯座
日期:2013-09-28 17:07:31
4 [报告]
发表于 2013-09-29 21:42 |只看该作者
不行啊
mysql> drop index 'PRIMARY' on user;
ERROR 1064 (42000): You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near ''PRIMARY' on college' at line 1
回复 3# a.a


   

论坛徽章:
0
5 [报告]
发表于 2013-09-30 10:06 |只看该作者
本帖最后由 a.a 于 2013-09-30 10:09 编辑

回复 4# hanfeng122525


    是我写错了,那个不是引号。应该是这样
     DROP INDEX `PRIMARY` ON user;
     
     
    我测试过的。
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP