当前位置:网站首页>【MySQL-表结构与完整性约束的修改(ALTER)】
【MySQL-表结构与完整性约束的修改(ALTER)】
2022-07-06 09:22:00 【馥滢( '▿ ' )】
数据库TestDb1中有表your_table,请根据提示,在右侧代码文件编辑窗中添加恰当的语句,将表名your_table更改为my_table。
USE TestDb1;
#请在以下空白处添加恰当的语句,将表名your_table更改为my_table:
alter table your_table rename to my_table;
假设数据库MyDb中有表order(订单)和orderDetail(订单明细) 等表,两表的结构分别如下:
order表
字段名称 数据类型 备注 orderNo char(12) 订单号,主码 orderDate date 订购日期 customerNo char(12) 客户编号,外码,与customer.customerNo对应 employeeNo char(12) 雇员工号,外码,与employee.employeeNo对应 orderDetail表
字段名称 数据类型 备注 orderNo char(12) 订单号,主属性,外码,与order.orderNo对应 productNo char(12) 产品编号,主属性,外码,与product.productNo对应 quantityOrdered int 订购数量 orderDate date 订购日期 注:表orderDetail的主码由(orderNo,productNo)组成
编程的任务是对orderDetail表进行修改:
- orderDetail表的orderDate列明显多余,因为同一订单中的每一笔交易都发生在同一天,这个日期在订单主体表order中已有记录,请删除列orderDate。
- 产品的单价是订单明细需要记录的内容,请在orderDetail中添加列unitPrice以记录产品的单价:
字段名称 数据类型 备注 unitPrice numeric(10,2) 产品的成交单价 请根据提示,在右侧代码文件编辑窗中添加恰当的语句,实现上述编程任务。
use MyDb;
#请在以下空白处添加适当的SQL代码,实现编程要求
#语句1:删除表orderDetail中的列orderDate
alter table orderDetail drop orderDate;
#语句2:添加列unitPrice
alter table orderDetail add column unitPrice numeric(10,2);
数据库MyDb中有表addressBook(通信录),结构如下:
字段名称 | 数据类型 | 备注 |
---|---|---|
serialNo | int | 自动编号,主码 |
name | char(32) | 姓名 |
company | char(32) | 工作单位 |
position | char(10) | 职位 |
workPhone | char(16) | 办公电话 |
mobile | char(11) | 手机 |
int | QQ号 | |
weixin | char(12) | 微信号 |
当初创建表的语句如下:
create table addressBook(
serialNo int auto_increment primary key,
name char(32),
company char(32),
position char(10),
workPhone char(16),
mobile char(11),
QQ int,
weixin char(12)
);
你的编程任务是对表addressBook作以下修改:
- 将QQ号的数据类型改为char(12);
- 将列名weixin改为wechat。
use MyDb; #请在以下空白处添加适当的SQL语句,实现编程要求 alter table addressBook modify QQ char(12) ; alter table addressBook rename column weixin to wechat;
边栏推荐
- 3. Input and output functions (printf, scanf, getchar and putchar)
- Write a program to simulate the traffic lights in real life.
- 7-7 7003 组合锁(PTA程序设计)
- 7-9 制作门牌号3.0(PTA程序设计)
- 【九阳神功】2020复旦大学应用统计真题+解析
- 2022泰迪杯数据挖掘挑战赛C题思路及赛后总结
- Poker game program - man machine confrontation
- C语言入门指南
- SRC挖掘思路及方法
- 【九阳神功】2017复旦大学应用统计真题+解析
猜你喜欢
Custom RPC project - frequently asked questions and explanations (Registration Center)
5. Download and use of MSDN
附加简化版示例数据库到SqlServer数据库实例中
Programme de jeu de cartes - confrontation homme - machine
深度强化文献阅读系列(一):Courier routing and assignment for food delivery service using reinforcement learning
C language Getting Started Guide
Wei Pai: the product is applauded, but why is the sales volume still frustrated
C语言入门指南
自定义RPC项目——常见问题及详解(注册中心)
Nuxtjs快速上手(Nuxt2)
随机推荐
QT meta object qmetaobject indexofslot and other functions to obtain class methods attention
4.分支语句和循环语句
编写程序,模拟现实生活中的交通信号灯。
实验五 类和对象
MATLAB打开.m文件乱码解决办法
稻 城 亚 丁
关于双亲委派机制和类加载的过程
【九阳神功】2016复旦大学应用统计真题+解析
1. First knowledge of C language (1)
7-7 7003 组合锁(PTA程序设计)
2022 Teddy cup data mining challenge question C idea and post game summary
MySQL lock summary (comprehensive and concise + graphic explanation)
The latest tank battle 2022 full development notes-1
5. Function recursion exercise
3.输入和输出函数(printf、scanf、getchar和putchar)
力扣152题乘数最大子数组
Difference and understanding between detected and non detected anomalies
Mode 1 two-way serial communication is adopted between machine a and machine B, and the specific requirements are as follows: (1) the K1 key of machine a can control the ledi of machine B to turn on a
[dark horse morning post] Shanghai Municipal Bureau of supervision responded that Zhong Xue had a high fever and did not melt; Michael admitted that two batches of pure milk were unqualified; Wechat i
撲克牌遊戲程序——人機對抗