Home Database Mysql Tutorial SQL学习笔记三 select语句的各种形式小结

SQL学习笔记三 select语句的各种形式小结

Jun 07, 2016 pm 06:02 PM
select

SQL学习笔记三 select语句的各种形式小结,大家可以查看下select命名的使用。

代码如下:
Select * from T_Employee
select FName,FAge from T_Employee
select FName from T_Employee where FSalary select FName as 姓名,FAge as 年龄,FSalary as 月薪from T_Employee where FSalary select FName as 姓名,FAge as 年龄,FSalary as 月薪,getdate() as 当前时间from T_Employee


3.3.1 SELECT命令的格式与基本使用
Ø数据查询是数据库中最常见的操作。
ØSQL语言提供SELECT语句,通过查询操作可得到所需的信息。
ØSELECT语句的一般格式为:
SELECT〈列名〉[{,〈列名〉}]
FROM〈表名或视图名〉[{,〈表名或视图名〉}]
[WHERE〈检索条件〉]
[GROUP BY [HAVING ]]
[ORDER BY [ASC|DESC]];
ØØ查询的结果是仍是一个表。
ØSELECT语句的执行过程是:
Ø根据WHERE子句的检索条件,从FROM子句指定的基本表或视图中选取满足条件的元组,再按照SELECT子句中指定的列,投影得到结果表。
Ø如果有GROUP子句,则将查询结果按照相同的值进行分组。
Ø如果GROUP子句后有HAVING短语,则只输出满足HAVING条件的元组。
Ø如果有ORDER子句,查询结果还要按照的值进行排序。
Ø例3.21 查询全体学生的学号、姓名和年龄。
SELECT SNO, SN, AGE FROM S
Ø例3.22 查询学生的全部信息。
SELECT * FROM S
Ø用‘ * '表示S表的全部列名,而不必逐一列出。
Ø例3.23 查询选修了课程的学生号。
SELECT DISTINCT SNO FROM SC
Ø查询结果中的重复行被去掉
ØØ上述查询均为不使用WHERE子句的无条件查询,也称作投影查询。
Ø另外,利用投影查询可控制列名的顺序,并可通过指定别名改变查询结果的列标题的名字。
例3.24 查询全体学生的姓名、学号和年龄。
SELECT SNAME NAME, SNO, AGE FROM S
Ø其中,NAME为SNAME的别名
3.3.2 条件查询
Ø当要在表中找出满足某些条件的行时,则需使用WHERE子句指定查询条件。
ØWHERE子句中,条件通常通过三部分来描述:
1. 列名;
2. 比较运算符;
3. 列名、常数。








3.3.2.1 比较大小
例3.25 查询选修课程号为‘C1'的学生的学号和成绩。
SELECT SNO,SCORE FROM SC WHERE CNO='C1'Ø例3.26 查询成绩高于85分的学生的学号、课程号和成绩。
SELECT SNO,CNO,SCORE FROM SC WHERE SCORE>85
Ø3.3.2.2 多重条件查询
Ø当WHERE子句需要指定一个以上的查询条件时,则需要使用逻辑运算符AND、OR和NOT将其连结成复合的逻辑表达式。
Ø其优先级由高到低为:NOT、AND、OR,用户可以使用括号改变优先级。
Ø例3.27 查询选修C1或C2且分数大于等于85分学生的的学号、课程号和成绩。
SELECT SNO,CNO,SCORE
FROM SC
WHERE(CNO='C1' OR CNO='C2') AND SCORE>=85
3.3.2.3 确定范围
例3.28 查询工资在1000至1500之间的教师的教师号、姓名及职称。
SELECT TNO,TN,PROF
FROM T
WHERE SAL BETWEEN 1000 AND 1500
Ø等价于
SELECT TNO,TN,PROF
FROM T
WHERE SAL>=1000 AND SALØ例3.29 查询工资不在1000至1500之间的教师的教师号、姓名及职称。
SELECT TNO,TN,PROF
FROM TWHERE SAL NOT BETWEEN 1000 AND 1500
3.2.2.4 确定集合
Ø利用“IN”操作可以查询属性值属于指定集合的元组。
例3.30 查询选修C1或C2的学生的学号、课程号和成绩。
SELECT SNO, CNO, SCORE
FROM SC
WHERE CNO IN(‘C1', ‘C2')
Ø此语句也可以使用逻辑运算符“OR”实现。
SELECT SNO, CNO, SCORE
FROM SC
WHERE CNO=‘C1' OR CNO= ‘C2'Ø利用“NOT IN”可以查询指定集合外的元组。
例3.31 查询没有选修C1,也没有选修C2的学生的学号、课程号和成绩。
SELECT SNO, CNO, SCORE
FROM SC
WHERE CNO NOT IN(‘C1', ‘C2')
Ø等价于:
SELECT SNO, CNO, SCORE
FROM SC
WHERE CNO!=‘C1' AND CNO!= ‘C2'Ø
3.3.2.5 部分匹配查询
Ø上例均属于完全匹配查询,当不知道完全精确的値时,用户还可以使用LIKE或NOT LIKE进行部分匹配查询(也称模糊查询)。
ØLIKE定义的一般格式为:
LIKE
Ø属性名必须为字符型,字符串常量的字符可以包含如下两个特殊符号:
Ø%:表示任意知长度的字符串;
Ø_:表示任意单个字符。
例3.32 查询所有姓张的教师的教师号和姓名。
SELECT TNO, TN
FROM T
WHERE TN LIKE ‘张%'
例3.33 查询姓名中第二个汉字是“力”的教师号和姓名。
SELECT TNO, TN
FROM T
WHERE TN LIKE ‘_ _力%'Ø注:一个汉字占两个字符。
3.3.2.6 空值查询
Ø某个字段没有值称之为具有空值(NULL)。
Ø通常没有为一个列输入值时,该列的值就是空值。
Ø空值不同于零和空格,它不占任何存储空间。
Ø例如,某些学生选课后没有参加考试,有选课记录,但没有考试成绩,考试成绩为空值,这与参加考试,成绩为零分的不同。

例3.34 查询没有考试成绩的学生的学号和相应的课程号。
SELECT SNO, CNO
FROM SC
WHERE SCORE IS NULL
Ø注意:这里的空值条件为IS NULL,不能写成SCORE=NULL。

Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Best Graphic Settings
2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. How to Fix Audio if You Can't Hear Anyone
2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

How to hide the select element in jquery How to hide the select element in jquery Aug 15, 2023 pm 01:56 PM

How to hide the select element in jquery: 1. hide() method, introduce the jQuery library into the HTML page, you can use different selectors to hide the select element, the ID selector replaces the selectId with the ID of the select element you actually use; 2. css() method, use the ID selector to select the select element that needs to be hidden, use the css() method to set the display attribute to none, and replace selectId with the ID of the select element.

Asynchronous processing method of Select Channels Go concurrent programming using golang Asynchronous processing method of Select Channels Go concurrent programming using golang Sep 28, 2023 pm 05:27 PM

Asynchronous processing method of SelectChannelsGo concurrent programming using golang Introduction: Concurrent programming is an important area in modern software development, which can effectively improve the performance and responsiveness of applications. In the Go language, concurrent programming can be implemented simply and efficiently using Channels and Select statements. This article will introduce how to use golang for asynchronous processing methods of SelectChannelsGo concurrent programming, and provide specific

How to implement change event binding of select elements in jQuery How to implement change event binding of select elements in jQuery Feb 23, 2024 pm 01:12 PM

jQuery is a popular JavaScript library that can be used to simplify DOM manipulation, event handling, animation effects, etc. In web development, we often encounter situations where we need to change event binding on select elements. This article will introduce how to use jQuery to bind select element change events, and provide specific code examples. First, we need to create a dropdown menu with options using labels:

What is the reason why Linux uses select? What is the reason why Linux uses select? May 19, 2023 pm 03:07 PM

Because select allows developers to wait for multiple file buffers at the same time, it can reduce IO waiting time and improve the IO efficiency of the process. The select() function is an IO multiplexing function that allows the program to monitor multiple file descriptors and wait for one or more of the monitored file descriptors to become "ready"; the so-called "ready" state is Refers to: the file descriptor is no longer blocked and can be used for certain types of IO operations, including readable, writable, and exceptions. select is a computer function located in the header file #include. This function is used to monitor file descriptor changes—reading, writing, or exceptions. 1. Introduction to the select function. The select function is an IO multiplexing function.

How to use the select syntax of mysql How to use the select syntax of mysql Jun 01, 2023 pm 07:37 PM

1. Keywords in SQL statements are not case-sensitive. SELECT is equivalent to SELECT, and FROM is equivalent to from. 2. To select all columns from the users table, you can use the symbol * to replace the column name. Syntax--this is a comment--query out [all] data from the [table] specified by FEOM. * means [all columns] SELECT*FROM--query out the specified data from the specified [table] from FROM Data of column name (field) SELECT column name FROM table name instance--Note: Use English commas to separate multiple columns selectusername, passwordfrom

Implement Select Channels Go concurrent programming performance optimization through golang Implement Select Channels Go concurrent programming performance optimization through golang Sep 27, 2023 pm 01:09 PM

Implementing SelectChannels through golang Performance optimization of Go concurrent programming In the Go language, it is very common to use goroutine and channel to implement concurrent programming. When dealing with multiple channels, we usually use select statements for multiplexing. However, in the case of large-scale concurrency, using select statements may cause performance degradation. In this article, we will introduce some implementations of select through golang

Select Channels Go concurrent programming for reliability and robustness using golang Select Channels Go concurrent programming for reliability and robustness using golang Sep 28, 2023 pm 05:37 PM

SelectChannels for Reliability and Robustness Using Golang Introduction to Concurrent Programming: In modern software development, concurrency has become a very important topic. Using concurrent programming can make programs more responsive, utilize computing resources more efficiently, and be better able to handle large-scale parallel computing tasks. Golang is a very powerful concurrent programming language. It provides a simple and effective way to implement concurrent programming through go coroutines and channel mechanisms.

Apply Select Channels Go concurrent programming in golang projects to achieve high performance Apply Select Channels Go concurrent programming in golang projects to achieve high performance Sep 28, 2023 pm 03:58 PM

Applying SelectChannelsGo concurrent programming in golang projects to achieve high performance Introduction: In today's Internet era, high-performance applications are one of our goals. During the development process, using concurrent programming is one of the common means to improve application performance. In golang, high-performance concurrent programming can be achieved using select statements and channels. This article will introduce how to apply select statements and channels in golang projects

See all articles