码迷,mamicode.com
首页 > 数据库 > 详细

SQL查询初学者指南读书笔记(二)创建SQL查询

时间:2015-06-02 13:31:15      阅读:149      评论:0      收藏:0      [点我收藏+]

标签:读书笔记   sql   数据库   

PARTII: SQL Basics

CHAPTER 4Creating a Simple Query


介绍一种如何创建SQL语句的技术--“Request/Translation/Clean Up/SQL”

 

The SELECT operationin SQL can be broken down into three smaller operations,

which we will referto as the SELECT statement,the SELECT expression,

and the SELECTquery.

一层包含一层,相互嵌套使用,可以构成非常复杂的SELECT.

 

技术分享

 

 

SELECT Statement的其它关键词都比较熟悉,这儿稍微解释GROUP BYHAVING

GROUP BY—When youuse aggregate functions in the SELECT clause

to produce summaryinformation, you use the GROUP BY clause to

divide theinformation into distinct groups.Your database system uses

any column or listof columns following the GROUP BY keywords as

grouping columns.The GROUP BY clause is optional, and we’ll examine

it further inChapter 13, Grouping Data.

 

HAVING—The HAVINGclause filters the result of aggregate functions

in groupedinformation. It is similar to the WHERE clause in that the

HAVING keyword isfollowed by an expression that evaluates to true,

false, orunknown.You can test the expression by using standard comparison

operators, Booleanoperators, or special operators. HAVING is

also an optionalclause, and we’ll take a closer look at it in Chapter 14,

Filtering GroupedData.


SQL查询初学者指南读书笔记(二)创建SQL查询

标签:读书笔记   sql   数据库   

原文地址:http://blog.csdn.net/soliddream66/article/details/46325789

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!