内蒙古科技大学课程设计说明书
查询结果如下:
图 4.1 查询添加新信息后的员工信息表
4.1..3 修改数据
修改游客编号为516游客的联系地址为黄河大街,职业修改为教师,收入改为150000.
select * from tourist where tourist_id=516; update tourist set tourist_address='黄河大街',tourist_occupation='教师',tourist_income='150000';
select * from tourist where tourist_id=516; 查询结果如下:
图4.2 查询修改后的数据
25
内蒙古科技大学课程设计说明书
4.1.1.4 删除数据
删除员工编号为161的员工信息:
select * from staff; delete from staff where staff_id=161; select * from staff; 查询结果如下:
图4.3 删除后的数据
4.2 数据库测评
4.2.1 高级查询 4.2.1.1 单表查询
26
内蒙古科技大学课程设计说明书
查询人数小于20而且团编号<317 select * from tour where group_person<20 and group_id<317 查询结果如下:
图4.4 单表查询
4.2.1.2多表查询
查询团编号为313,游客编号为513,酒店编号为940游客的酒店信息:
Select tour.group_id,tour.group_name,tourist.tourist_id,tourist.tourist_name,hotel.hotel_id,hotel.hotel_name,hotel.hotel_room from tour,tourist,hotel where group_id=313 and tourist.tourist_id=513 and hotel.hotel_id=940; 查询结果如下:
图4.5 多表查询
27
内蒙古科技大学课程设计说明书
4.2.1.3分组查询
查询以火车为交通方式的路线信息:
select route_id,route_name,route_traffic from route where route.route_traffic='火车' 查询结果如下:
图4.6 分组查询
4.2.1.4 统计查询
统计年收入超过150000的游客信息:
select tourist_income, COUNT(tourist_income)tourist_income from tourist where tourist_income>150000 group by tourist_income 查询结果如下:
图4.7 统计查询
28