作业一
1.创建数据库company,在库中创建两个表offices和employees表
2.查看该库下几个表以及查看两张表结构。
3.将表employees的mobile字段修改到officeCode字段后面。
4.将表employees的birth字段改名为employee birth。
5.修改sex字段,数据类型为CHAR(1),非空约束。
6.删除字段note。
7.增加字段名favoriate activity,数据类型为VARCHAR(100)。
8.删除表offices.
9.将表employees名称修改为employees_info
create database company;
create table offices(
officeCode int(10) primary key not null unique,
city varchar(50) not null,
address varchar(50),
country varchar(50) not null,
postalCode varchar(15) unique
);
create table employees(
employeeNumber int(11) primary key not null unique auto_increment,
lsatName varchar(50) not null,
firstName varchar(50) not null,
mobile varchar(25) unique,
officeCode int(10) not null,
jobTitle varchar(50) not null,
birth datetime not null,
note varchar(255),
sex varchar(5)
);
```bash
ALTER table employees add CONSTRAINT fk_emp_com FOREIGN key(officeCode) REFERENCES offices(officeCode);
show TABLES;
desc employees ;
desc offices;
insert into offices(officeCode) select mobile from employees;
SELECT * FROM offices
alter table employees change birth wth int
alter table employees MODIFY sex char(1) not null
alter table employees drop note
alter table employees ADD favoriate_activity VARCHAR(100)
alter table employees drop FOREIGN key fk_emp_com
drop table offices
alter table employees rename employees_info
作业二
创建数据表customers,在c_num字段上添加主键约束和自增约 束,在c_birth字段上添加非空约
束。
将c_contact字段插入c_birth字段后面。
将c_name字段数据类型改为VARCHAR(70)。
将c_contact字段改名为c_phone。
增加c_gender字段,数据类型为CHAR(1)。
将表名修改为customers_info。
删除字段c_city。
修改数据表的存储引擎为MyISAM
create database Market;
use Market
create table customers
(
c_num int(11) PRIMARY key not null unique auto_increment,
c_name varchar(50),
c_contact varchar(50),
c_city varchar(50),
c_birth datetime not null
);
INSERT into customers(c_contact) SELECT c_birth from customers
alter table customers MODIFY c_name varchar(70)
alter table customers change c_contact c_phone
alter table customers add c_gender char(1)
alter table customers rename customers_info
alter table customers drop c_city
alter table customers engine=MyiSAM
create table orders(
c_name int(11) PRIMARY key not null unique auto_increment,
o_date date,
c_id int(11)
);
alter TABLE orders ADD CONSTRAINT fk_orders_customers FOREIGN key(c_id) REFERENCES customers(c_num)
ALTER TABLE orders drop FOREIGN key fk_orders_customers
DROP TABLE customers