首页 > 数据库 > MySQL > 正文

mysql创建Bitmap_Join_Indexes中的约束与索引

2024-07-24 12:44:07
字体:
来源:转载
供稿:网友
测试过程如下:
create table sales 
as select * from sh.sales;    

create table customers 

as 
select * from sh.customers; 
create unique index CUST_ID_un on customers(CUST_ID);    


创建: 
Bitmap Join Indexes 

create bitmap index sales_cust_gender_bjix 
on sales(customers.cust_gender) 
from sales,customers 
where sales.cust_id=customers.cust_id; 

报错如下: 


第 3 行出现错误: 
ORA-25954: 维的主键或唯一约束条件缺失
案例分析:在此处尽管定义了对表customers的唯一性索引,但是该索引并没有对表customers并没有唯一性约束,即表示唯一性索引并不表示对表进行唯一性约束;但是如果加了唯一性的约束,就不会出现报错,示例如下:


SQL> ALTER TABLE customers
2 MODIFY (cust_id CONSTRAINT customers_un unique); 
表已更改。

SQL> create bitmap index sales_cust_gender_bjix 

2 on sales(customers.cust_gender) 
3 from sales,customers 
4 where sales.cust_id=customers.cust_id; 


索引已创建。 



结论:

只要加了唯一性的约束,创建BJI则不会报错。 

您可能感兴趣的文章:

MySQL中主键为0与主键自排约束的关系详解(细节)MySQL外键约束常见操作方法示例【查看、添加、修改、删除】MySQL删除有外键约束的表数据方法介绍MySQL中的唯一性约束与NULL详解MySQL删除表的时候忽略外键约束的简单实现MySQL 关闭子表的外键约束检察方法MySQL学习笔记之数据定义表约束,分页方法总结MySQL所支持的数据类型与表字段约束类型的学习教程详解MySQL中的外键约束问题MySQL导出所有Index和约束的方法MySQL 添加、修改、删除表的列及约束等表的定义MySQL学习笔记4:完整性约束限制字段MySQL约束类型及举例介绍
发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表