- 1、本文档共5页,可阅读全部内容。
- 2、有哪些信誉好的足球投注网站(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。
- 3、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载。
- 4、如文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“版权申诉”(推荐),也可以打举报电话:400-050-0827(电话支持时间:9:00-18:30)。
查看更多
实验六连接查询试验报告市场营销152 08刘运良1620153968前提:还原数据库sales,student-mis针对sales数据库查询所有员工的姓名,部门名称,及工资。selectemployee.Employee_Name,employee.Wages,department.Department_Namefromemployeeinnerjoindepartmentonemployee.Department_ID=department.Department_ID查询公司员工销售记录,并列出员工姓名及客户姓名。selectemployee.Employee_Name,customer.Customer_Namefromsell_orderinnerjoinemployeeonsell_order.Employee_ID=employee.Employee_IDinnerjoincustomeronsell_order.Custom_ID=customer.Customer_ID查询所有产品的产品编号,名称,类别名称。selectgoods.Goods_ID,goods.Goods_Name,goods_classification.Classification_Namefromgoodsinnerjoingoods_classificationongoods.Classification_ID=goods_classification.Classification_ID查询所有订单的产品名称,客户姓名,员工姓名及运输公司名称。selectgoods.Goods_Name,customer.Customer_Name,employee.Employee_Name,transporter.Transport_Namefromgoods,customer,employee,transporter,sell_orderwhereemployee.Employee_ID=sell_order.Employee_IDandcustomer.Customer_ID=sell_order.Custom_IDandgoods.Goods_ID=sell_order.Goods_IDandtransporter.Transporter_ID=sell_order.Transporter_ID针对student-mis数据库查询出成绩表中不及格学生的学号,姓名,成绩。selectstudent_info.Student_ID,student_info.Student_Name,student_course_info.Scorefromstudent_info,student_course_infowherestudent_course_info.Score60 andstudent_course_info.Student_ID=student_info.Student_ID显示所有学生的姓名,选修课程名。selectstudent_info.Student_Name,course_info.Course_Namefromstudent_info,course_info,student_course_infowherestudent_info.Student_ID=student_course_info.Student_IDandcourse_info.Course_No=student_course_info.Course_No显示所有选修了计算机文化基础的学生姓名及成绩。selectstudent_course_info.*,student_info.Student_Name,student_course_info.Scorefromstudent_info,student_course_info,course_infowherestudent_info.Student_ID=student_course_info.Student_IDandstudent_course_info.Course_No=course_info.Course_Noandcourse_info.Course_Name=计算机文化基础找出数据结构课程成绩在90分以上的学生姓名及成绩。selectstudent_course_info.*,student_info.Student_Name,student_course_info.Scorefromstudent_info,student_course_info,course_infowherestudent_course_info.Score90 andcourse_info.Course_Name=数据结构and
文档评论(0)