资源描述:
《Chapter 6数据库基础知识(benet)》由会员上传分享,免费在线阅读,更多相关内容在行业资料-天天文库。
1、第六章数据查询回顾在T-SQL中使用条件表达式和逻辑运算符;视同SQLServer提供的通配符进行条件数据筛选;使用INSERT和SELECTINTO进行数据插入操作;连接和使用连接进行数据行更新;使用UPDATE进行数据行更新;使用DELETE关键词进行数据删除操作;目标掌握数据查询Select语句的格式和用法;掌握分组查询的T-SQL;掌握模糊查询的T-SQL;理解和使用SQLServer的各种聚合函数;理解和使用INNERJOIN进行多表连接查询;ApplicationLogic什么是查询?客户程序查询请求查询结果集SQLSER
2、VERABCDEFGSELECT*FROMSALESSELECT语句2-1列名称SELECTAu_ID,Au_LName,Au_FName,Phone表名FROMAuthors过滤条件WHERESTATE=‘CA’SELECTSELECTAu_ID,Au_LName,Au_FName,PhoneFROMAuthorsWHERESTATE=‘CA’ORDERBYAu_LName排序条件ORDERBYAu_LNameSELECT语句2-2employeeidlastnamefirstnametitle1DavolioNancySales
3、Representative2FullerAndrewVicePresident,Sales3LeverlingJanetSalesRepresentative4PeacockMargaretSalesRepresentative5BuchananStevenSalesManager6SuyamaMichaelSalesRepresentative7KingRobertSalesRepresentativeUSEnorthwindSELECTemployeeid,lastname,firstname,titleFROMemployee
4、s简单查询语句USENorthWindSELECT*FROMemployees查询全部的行和列SELECTfirstname,lastname,birthdateFROMEmployees查询全部行和特定列SELECT*FROMemployeesWHEREcity='LONDON'查询限定范围的行对象限定SELECT*FROMNorthwind.dbo.Shippers数据库和所有者限定SELECTCustomers.CustomerID,Customers.CompanyNameFROMCustomersJOINOrdersON(C
5、ustomers.CustomerID=Orders.CustomerID)WHEREOrders.ShippedDate>'May11998'表和视图限定ORDERBY子句2-1USEnorthwindSELECTproductid,productname,categoryid,unitpriceFROMproductsORDERBYcategoryid,unitpriceDESCproductidproductnamecategoryidunitprice43IpohCoffee146.00002Chang119.0000…………
6、63Vegie-spread243.900061Siropd'érable228.5000…………ORDERBY子句2-2演示使用查询分析器进行排序查询…在查询中使用常量和运算符USEPubsSELECTtitle_id+':'+title+'->'+typeFROMtitlesAS子句USEPubsSELECTtitle_id+':'+title+'->'+typeAsMyTitleFROMtitles带有约束的SELECT语句USENorthWindSelectIDENTITY(int,1,1)AsP_idintoproduct_
7、DetFromproductsTOP子句SELECTTop3EmployeeID,LastName,FirstNameFromEmployees限制返回数据行SELECTTop80PercentEmployeeID,LastName,FirstNameFromEmployees限制返回行百分比聚合函数2-1SELECTSUM(ReportsTo)AsTotalFromEmployeesSUMSELECTAVG(ReportsTo)AsTotalFromEmployeesAVGSELECTCOUNT(*)AsCountsFromEmpl
8、oyeesWHEREReportsTo>2COUNT聚合函数2-2UsePubsSelectMax(qty)AsMaxValuefromSalesMAXUsePubsSelectMin(qty)AsMinValuefro