当前位置:网站首页>【educoder数据库实验 索引】
【educoder数据库实验 索引】
2022-07-06 09:22:00 【馥滢( '▿ ' )】
1、任务要求
在sale数据库中,建立供应商数据表
gys,包括供应商号gysh 字符型4位、公司名称 可变长字符型20位、电话 可变长字符型11位、地址 可变长字符型20位、联系人 可变长字符型4位、手机 字符型11位 字段,同时根据供应商号字段建立主索引。
按行的方式显示gyh数据表的索引
use sale;
#代码开始
create table gyh
(
gysh char(4) primary key,
Name varchar(20),
telephone varchar(11),
address varchar(20),
contact varchar(4),
mobile char(11)
);
show index from gyh;
#代码结束
2、任务:
第一题
在xsdmx数据表根据销售单编号xsdh和序号xh两个字段建立主索引xsdxh
第二题
在xsdmx数据表根据商品编号sph字段建立普通索引sphsy。
第三题
在商品sp数据表根据商品名spm字段建立唯一索引spmsy。
use sale
#代码开始
#第一题
alter table xsdmx add primary key(xsdh,xh);
#第二题
create index sphsy on xsdmx(sph);
#第三题
create unique index spmsy on sp(spm);
#代码结束
show index in xsdmx\g;
show index in sp\g;
3、删除sp商品数据表的索引spmsy
删除索引的命令格式
use sale;
#代码开始
alter table sp drop index spmsy;
#代码结束
show index in sp\g;
边栏推荐
- Difference and understanding between detected and non detected anomalies
- Nuxtjs quick start (nuxt2)
- Poker game program - man machine confrontation
- The latest tank battle 2022 full development notes-1
- Mortal immortal cultivation pointer-1
- canvas基础2 - arc - 画弧线
- hashCode()与equals()之间的关系
- Reinforcement learning series (I): basic principles and concepts
- [modern Chinese history] Chapter 9 test
- Leetcode. 3. Longest substring without repeated characters - more than 100% solution
猜你喜欢
Custom RPC project - frequently asked questions and explanations (Registration Center)
7. Relationship between array, pointer and array
[面試時]——我如何講清楚TCP實現可靠傳輸的機制
(原创)制作一个采用 LCD1602 显示的电子钟,在 LCD 上显示当前的时间。显示格式为“时时:分分:秒秒”。设有 4 个功能键k1~k4,功能如下:(1)k1——进入时间修改。
4. Binary search
自定义RPC项目——常见问题及详解(注册中心)
【黑马早报】上海市监局回应钟薛高烧不化;麦趣尔承认两批次纯牛奶不合格;微信内测一个手机可注册俩号;度小满回应存款变理财产品...
Service ability of Hongmeng harmonyos learning notes to realize cross end communication
Mortal immortal cultivation pointer-2
1. First knowledge of C language (1)
随机推荐
1. First knowledge of C language (1)
3. C language uses algebraic cofactor to calculate determinant
7-4 散列表查找(PTA程序设计)
[面试时]——我如何讲清楚TCP实现可靠传输的机制
【九阳神功】2021复旦大学应用统计真题+解析
重载和重写的区别
2. C language matrix multiplication
7-6 矩阵的局部极小值(PTA程序设计)
[the Nine Yang Manual] 2017 Fudan University Applied Statistics real problem + analysis
Inaki Ading
The latest tank battle 2022 - full development notes-3
Poker game program - man machine confrontation
PriorityQueue (large root heap / small root heap /topk problem)
Miscellaneous talk on May 14
【手撕代码】单例模式及生产者/消费者模式
7-9 制作门牌号3.0(PTA程序设计)
简述xhr -xhr的基本使用
Redis的两种持久化机制RDB和AOF的原理和优缺点
Why use redis
2022 Teddy cup data mining challenge question C idea and post game summary