search
HomeDatabaseMysql Tutorial我们曾经心碎的数据库之 数据查询基础_MySQL

1.记录集:

 

 记录集是符合查询条件的记录组织在一起的类似于表结构的查询结果

 

2.使用select语句进行查询

 

语法:

 

   select 列名

 

   from 表名

 

   where 查询条件表达式

 

   order by 排序的列名 【asc或desc】

 

  1.查询所有的数据行和列

 

  select * from students

 

  2.查询部分行和列

 

    select 列名  from 表名

 

    where  查询条件表达式

 

 3.在查询中使用列的别名

 

select  scode as 学生编号,sname as 学生姓名  saddress as 学生地址

from  Students

where  saddress '北京'

4.查询空值

 

 采用 is null 或 is not null

 

select  sname

from  students

where semail  is null

5.在查询中使用常量列

 

select sname as 学生姓名,saddress as 地址,‘北京海淀区’ as 学校名称

from students

6.查询返回限制的行数

 

例: 查询成绩前三名的学生姓名

 

select top 3 stuno,sresult

from students

order by sresult

7.查询排序

 

使用 order by

 

8.在查询中使用函数

 

 (1)字符串函数

 

     charindex():用来寻找一个指定的字符串在另一个字符串中的其实位置

 

   

 

select  charindex('北京',‘北京好大,人好多’,1)

 

返回:1

   len():返回传递给它的字符串长度

 

select len('北京真的很好')

 

返回:6

  upper():把传递给他的字符串转换为大写

 

select upper('记住,nothing is perfect')

 

返回:记住,NOTHING IS PERFECT

  ltrim():清除字符左边的空格

 

 

 

select ltrim('                         你好吗?                说啊')

 

返回:你好吗?                说啊

rtrim():清除字符右边的空格

 

select  rtrim('明天   你好            ')

返回:明天   你好

right():从字符串右边返回指定书目的字符

 

select right(‘人生若只如初见’,3)

 

返回:如初见

replace():替换一个字符串中的字符

 

select replace('何事秋风悲画扇',‘秋’,‘冬’)

 

返回:何事冬风悲画扇

stuff():在一个字符串中,删除指定长度的字符,并在该位置插入一个新的字符串

 

select stuff('我们都是好孩子',5,1,‘天真’)

 

返回:我们都是天真孩子

substring():截取固定长度的字符串

 

select substring('人生只不过是努力便都好吧',3,2)

 

返回:只不

(2)日期函数

 

getdate():取得当前的系统时间

 

select getdate()

 

返回:2015-11-04 19:27:26.680

dateadd():将指定的数值添加到指定的日期部分后的日期

 

select dateadd(yy,1,getdate())

 

返回:2016-11-04 19:30:20.000

datediff():两个日期之间的指定日期部分的间隔

 

select datediff(dd,'2014-10-12',getdate())

 

返回:388

datename():日期中指定日期部分的字符串形式

 

select datename(dw,getdate())

 

返回:星期三

datepart():日期中指定日期部分的整数形式

 

select datepart(mm,getdate())

 

返回:11

(3) 数学函数

 

 ceiling():向上取整  取大于或等于指定数值、表达式的最小整数

 

select ceiling(7.6)

 

返回:8

floor():向下取整  取小于或等于指定数值、表达式的最大整数

 

select floor(8.3)

 

返回:8

(4)系统函数

 

convert():用来转变数据类型

 

select convert(int,'123')

 

返回:123

Statement
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
深入理解MySQL索引优化器工作原理深入理解MySQL索引优化器工作原理Nov 09, 2022 pm 02:05 PM

本篇文章给大家带来了关于mysql的相关知识,其中主要介绍了关于索引优化器工作原理的相关内容,其中包括了MySQL Server的组成,MySQL优化器选择索引额原理以及SQL成本分析,最后通过 select 查询总结整个查询过程,下面一起来看一下,希望对大家有帮助。

如何在CakePHP中进行数据查询和更新?如何在CakePHP中进行数据查询和更新?Jun 03, 2023 pm 02:11 PM

CakePHP是一个流行的PHP框架,它提供了方便的ORM(对象关系映射)功能,使得查询和更新数据库变得非常容易。本文将介绍如何在CakePHP中进行数据查询和更新。我们将从简单的查询和更新开始,逐步深入,了解如何使用条件和关联的模型来更复杂地查询和更新数据。基本查询首先,让我们看看如何进行最简单的查询。假设我们有一个名为“Users”的数据表,并且我们想要

数据库系统的构成包括哪些数据库系统的构成包括哪些Jul 15, 2022 am 11:58 AM

数据库系统由4个部分构成:1、数据库,是指长期存储在计算机内的,有组织,可共享的数据的集合;2、硬件,是指构成计算机系统的各种物理设备,包括存储所需的外部设备;3、软件,包括操作系统、数据库管理系统及应用程序;4、人员,包括系统分析员和数据库设计人员、应用程序员(负责编写使用数据库的应用程序)、最终用户(利用接口或查询语言访问数据库)、数据库管理员(负责数据库的总体信息控制)。

数据库的什么是指数据的正确性和相容性数据库的什么是指数据的正确性和相容性Jul 04, 2022 pm 04:59 PM

数据库的“完整性”是指数据的正确性和相容性。完整性是指数据库中数据在逻辑上的一致性、正确性、有效性和相容性。完整性对于数据库系统的重要性:1、数据库完整性约束能够防止合法用户使用数据库时向数据库中添加不合语义的数据;2、合理的数据库完整性设计,能够同时兼顾数据库的完整性和系统的效能;3、完善的数据库完整性有助于尽早发现应用软件的错误。

mysql查询慢的因素除了索引,还有什么?mysql查询慢的因素除了索引,还有什么?Jul 19, 2022 pm 08:22 PM

mysql查询为什么会慢,关于这个问题,在实际开发经常会遇到,而面试中,也是个高频题。遇到这种问题,我们一般也会想到是因为索引。那除开索引之外,还有哪些因素会导致数据库查询变慢呢?

access数据库的结构层次是什么access数据库的结构层次是什么Aug 26, 2022 pm 04:45 PM

结构层次是“数据库→数据表→记录→字段”;字段构成记录,记录构成数据表,数据表构成了数据库。数据库是一个完整的数据的记录的整体,一个数据库包含0到N个表,一个表包含0到N个字段,记录是表中的行。

Yii框架中的数据查询:高效地访问数据Yii框架中的数据查询:高效地访问数据Jun 21, 2023 am 11:22 AM

Yii框架是一个开源的PHPWeb应用程序框架,提供了众多的工具和组件,简化了Web应用程序开发的流程,其中数据查询是其中一个重要的组件之一。在Yii框架中,我们可以使用类似SQL的语法来访问数据库,从而高效地查询和操作数据。Yii框架的查询构建器主要包括以下几种类型:ActiveRecord查询、QueryBuilder查询、命令查询和原始SQL查询

MySQL获取时间、格式转换各类操作方法详解MySQL获取时间、格式转换各类操作方法详解Nov 07, 2022 pm 05:06 PM

本篇文章给大家带来了关于mysql的相关知识,其中主要介绍了关于mysql获取时间、格式转换各类操作方法的相关内容, 下面一起来看一下,希望对大家有帮助。

See all articles

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 Tools

DVWA

DVWA

Damn Vulnerable Web App (DVWA) is a PHP/MySQL web application that is very vulnerable. Its main goals are to be an aid for security professionals to test their skills and tools in a legal environment, to help web developers better understand the process of securing web applications, and to help teachers/students teach/learn in a classroom environment Web application security. The goal of DVWA is to practice some of the most common web vulnerabilities through a simple and straightforward interface, with varying degrees of difficulty. Please note that this software

Atom editor mac version download

Atom editor mac version download

The most popular open source editor

SecLists

SecLists

SecLists is the ultimate security tester's companion. It is a collection of various types of lists that are frequently used during security assessments, all in one place. SecLists helps make security testing more efficient and productive by conveniently providing all the lists a security tester might need. List types include usernames, passwords, URLs, fuzzing payloads, sensitive data patterns, web shells, and more. The tester can simply pull this repository onto a new test machine and he will have access to every type of list he needs.

Dreamweaver Mac version

Dreamweaver Mac version

Visual web development tools

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment