查询实践 下面列出的是示例数据库中的请求语句以及方案查询的名称。你可以练习一下,尝试写出每个请求所需要的SQL,并通过示例中已保存的查询来检查你的答案。不要担心你的语句与已存的查询语句不同——只要结果集一样就可以。 销售定单数据库 1. “Show me all the information on our employees.” 结果在“CH04_Employee_Information”表中,共8行。
2. “Show me a list of cities, in alphabetical order, where our vend……
我们一直都在努力坚持原创.......请不要一声不吭,就悄悄拿走。
我原创,你原创,我们的内容世界才会更加精彩!
【所有原创内容版权均属TechTarget,欢迎大家转发分享。但未经授权,严禁任何媒体(平面媒体、网络媒体、自媒体等)以及微信公众号复制、转载、摘编或以其他方式进行使用。】
微信公众号
TechTarget
官方微博
TechTarget中国
查询实践
下面列出的是示例数据库中的请求语句以及方案查询的名称。你可以练习一下,尝试写出每个请求所需要的SQL,并通过示例中已保存的查询来检查你的答案。不要担心你的语句与已存的查询语句不同——只要结果集一样就可以。
销售定单数据库
1. "Show me all the information on our employees."
结果在“CH04_Employee_Information”表中,共8行。
2. "Show me a list of cities, in alphabetical order, where our vendors are located, and include the names of the vendors we work with in each city."
结果在“CH04_Vendor_Locations”表中,共10行。
娱乐经纪公司数据库
1. "Give me the names and phone numbers of all our agents, and list them in last name/first name order."
结果在“CH04_Agent_Phone_List”表中,共9行。
2. "Give me the information on all our engagements."
结果在“CH04_Engagement_Information”表中,共111行。
3. "List all engagements and their associated start dates. Sort the records by date in descending order and by engagement in ascending order."
结果在“CH04_Scheduled_Engagements”表中,共111行。
课程表数据库
1. "Show me a complete list of all the subjects we offer."
结果在“CH04_Subject_List”表中,共56行。
2. "What kinds of titles are associated with our faculty?"
结果在“CH04_Faculty_Titles”表中,共3行。
3. "List the names and phone numbers of all our staff, and sort them by last name and first name."
结果在“CH04_Staff_Phone_List”表中,共27行。
保龄球联盟数据库
1. "List all of the teams in alphabetical order."
结果在“CH04_Team_List”表中,共8行。
2. "Show me all the bowling score information for each of our members."
结果在“CH04_Bowling_Score_Information”表中,共1,344行。
3. "Show me a list of bowlers and their addresses, and sort it in alphabetical order."
结果在“CH04_Bowler_Names_Addresses”表中,共32行。
食谱数据库
1. "Show me a list of all the ingredients we currently keep track of."
结果在“CH04_Complete_Ingredients_List”表中,共79行。
2. "Show me all the main recipe information, and sort it by the name of the recipe in alphabetical order."
结果在“CH04_Main_Recipe_Information”表中,共15行。
翻译
TechTarget中国特约技术编辑,某高校计算机科学专业教师和网络实验室负责人,曾任职某网络国际厂商,关注数据中心、开发运维、数据库及软件开发技术。有多本关于思科数据中心和虚拟化技术的译著,如《思科绿色数据中心建设与管理》和《基于IP的能源管理》等。
相关推荐
-
SQL SELECT语句基础指南
本专题为QL SELECT语句基础。侧重概述了如何使用SELECT来访问SQL数据库中所有内容以及组成SELECT语句的许多子句名称和功能;同时还阐述了如何使用DISTINCT关键字消除重复的行,以及如何正确使用ORDER BY子句来排序数据。
-
SQL SELECT语句和SELECT查询示例(三)
本文是对整个这一章节的回顾,在本章中,我们介绍了SELECT操作,它是SQL中4个数据处理操作的其中一个,其他是UPDATE、INSERT和DELETE,它们会在第5部分中介绍……
-
SQL SELECT语句和SELECT查询示例(二)
文章列举了娱乐经纪公司数据库、教学安排数据库、保龄球联盟数据库、以及食谱数据库等示例。
-
SQL SELECT语句和SELECT查询示例(一)
目前我们已经探讨了SELECT语句和SELECT查询的基本特性,接下来让我们来看看在不同的环境中如何应用这些例子。这些示例各自包含了一个示例数据库,同时还阐述了……