T-SQL查询基础_MySQL
使用select语句进行查询
1.查询所有的数据行和列
select * from student
2.查询部分行和列
select scode,sname,saddress
from * student
where saddress='北京'
3.在查询中使用列的别名
select scode as 学生编号,sname as 姓名 ,saddress as 地址
from student
where saddress'北京'
4.查询空值
select sname from student
where semail is null
5.在查询中使用常量
select 姓名=sname ,地址=saddress,'汉族' as 民族
from student
6.查询返回限制的函数
select top 5 sname, saddress
from student
where Ssex=0
查询排序
如何使用order by
如果要按照一定顺序排列查询语句选中的行,则需要使用order by 字句,并且排序可以是升序(asc)可以是降序(desc),
eg: 将学生成绩按照升序排列
select studentID as 学生编号, CourseID as 课程ID,Score as 成绩
from Score
where Score >60
order by Score,CourseID
在查询中使用函数
1.字符串函数
函数名称:
1.CharIndex('str1','str2',index)//位置从开始
--第一个参数:要查询的字符串
--第二个参数:在哪个字符串中搜索
--第三个参数:从str2的第几个字母开始搜索
--注意点:如果在str2中没有找到str1,那么返回
eg:
SELECT CHARINDEX('JBNS','My Jbns Course')
2.len():获取小括号中字符串的长度,空格也算一个字符长度
eg:
SELECT LEN('SQL Server课程')
3.upper():将括号中出现的英文全部转换成大写
eg:
select upper('i can speak english.你能吗?')
select lower('I HAVE A DREAM')
4.LTrim():清除括号中内容左边的空格(left:right)
eg:
select rtrim(' 生活不是林黛玉, ')
5.既想移除左边空格,也想移除右边空格
eg:
select rtrim(ltrim(' 生活不是林黛玉, '))
select ltrim(rtrim(' 你还好吧! '))
6.思路灵活
eg:
select len(rtrim('今年奇怪了,北京没下雪,去去去 '))
7.substring('字符串',截取的位置,截取的长度)
eg:
select substring('我是中国人,我爱自己伟大的祖国,真的',6,1)
8.right():从字符串(左)右边返回指定类型的字符
eg:
select left('大家今天好像都没有交日记本,我去',3)
select right('大家今天好像都没有交日记本,我去',2)
9.replace('str1','要替换的字符','目标字符'):
eg:
select replace('张海迪,残疾人,虽然手不残疾,但是X残疾','残 疾','好')
10.stuff('字符串',删除的起始位置,删除的长度,'插入的字符串')
eg:
select stuff('我爱你中国,我爱你故乡',4,2,'北京')
2.日期函数
1.getdate():获取当前日期和时间
eg:
select getdate()
2.dateadd(按年/月/日添加,增量,时间)
eg:
select dateadd(yy,100,'2014-8-6')
select dateadd(year,-20,getdate())
3.datediff(按年/月/日求差,小时间,大时间)
eg:
select datediff(year,'1998-01-01',getdate())
4.datename:获取某个日期是星期几
eg:
select datename(dw,'2014-08-06')
5.datepart(mm,日期):获取指定日期对应的年/月/日部分
eg:
select datepart(yy,getdate())
通过该方式也可以获取当天是周几
eg:
select datepart(dw,getdate())
3.数学函数
1.rand():产生一个到之间的随机数
eg:
select right(rand(),4)
2..abs:取绝对值
eg:
select abs(-10)
select abs(10)非负数
3.ceiling:天花板,你要看天花板,抬头,向上取整
eg:
select ceiling(1.999991)
4.floor:向下取整
eg:
select floor(1.999999)
select ceiling(1.000000000000001)
select floor(2.999999999999999)
5.power(5,2)求幂值
eg:
select power(4,4)
select 1*2/3+5-56+100-5/100
select power(2,3)
6.round:将一个数字四舍五入到指定精度
eg:
select round(42.564,1)
7.sign:如果括号中写的是一个正数,返回,如果是负数,返回-1
eg:
--如果是返回
select sign(20)
select sign(0)
8.sqrt()开平方
eg:
select sqrt(9)
4.常用的系统函数
convert:(用来转换数据类型)
eg:
select convert (varchar(5),12345)
返回:字符串'12345'

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics

PHP is a widely used open source server-side scripting language that can handle all tasks in web development. PHP is widely used in web development, especially for its excellent performance in dynamic data processing, so it is loved and used by many developers. In this article, we will explain the basics of PHP step by step to help beginners from getting started to becoming proficient. 1. Basic syntax PHP is an interpreted language whose code is similar to HTML, CSS and JavaScript. Every PHP statement ends with a semicolon; Note

Go language is a statically typed, compiled language developed by Google. Its concise and efficient features have attracted widespread attention and love from developers. In the process of learning the Go language, mastering the basic knowledge of variables is a crucial step. This article will explain basic knowledge such as the definition, assignment, and type inference of variables in the Go language through specific code examples to help readers better understand and master these knowledge points. In the Go language, you can use the keyword var to define a variable, which is the format of the var variable name variable type.

Basic introduction to PHP: How to use the echo function to output text content. In PHP programming, you often need to output some text content to a web page. In this case, you can use the echo function. This article will introduce how to use the echo function to output text content and provide some sample code. Before starting, first make sure you have installed PHP and configured the running environment. If PHP is not installed yet, you can download the latest stable version from the PHP official website (https://www.php.net).

If you want to work in the IT industry, but do you want to learn programming, which technology should you choose? Of course it is Linux operation and maintenance. Linux is a very popular technology on the market, with a wide range of applications and good employment prospects, and is liked by many people. So the question is, can I learn Linux operation and maintenance with zero basic knowledge? In the server market, Linux system has a market share of up to 80% because of its advantages such as stability, security, free open source, efficiency and convenience. From this, it can be seen that Linux applications are very popular. Extensive. Whether now or in the future, learning Linux is a very good choice. As for whether it is possible to learn from scratch? My answer is of course. Oldboy Education Linux face-to-face class is specially designed for people with zero basic knowledge

C language function encyclopedia: from basic to advanced, detailed explanation of how to use functions, specific code examples are required Introduction: C language is a widely used programming language, and its powerful functions and flexibility make it the first choice of many developers. In C language, function is an important concept. It can combine a piece of code into an independent module, improving the reusability and maintainability of the code. This article will introduce the use of C language functions from the basics and gradually advance to help readers master the skills of function writing. 1. Definition and calling of functions in C

Calling all C# developers! Microsoft and non-profit organization freeCodeCamp announce the launch of a new global free Basic C# certification. This certification is designed to help developers of all levels learn the basics of C#, a popular programming language used to create a variety of applications, and you can display it in your LinkedIn profile. This certification includes 35 hours of Microsoft Learn training courses and an 80-question exam hosted on freeCodeCamp. This course covers topics such as variables, data types, control structures, and object-oriented programming. “Our Basic C# certification provides just that – proof of your ability to master this versatile

PHP is a widely used server-side scripting language used to develop dynamic websites, web applications, and other Internet services. In the process of developing PHP applications, using functions can help simplify code, improve code reusability, and reduce development costs. This article will introduce the basic usage and advanced usage of PHP functions. 1. Basic usage of PHP functions 1. Define functions In PHP, use the function keyword to define functions, for example: functiongreet($name){

PHP study notes: basic syntax and variable definition In today's Internet era, PHP (Hypertext Preprocessor), as a widely used server scripting language, is favored by more and more developers. This article will introduce you to the basic syntax of PHP and the definition of variables, and provide specific code examples to help beginners better understand and master it. 1. Basic syntax of PHP Markings of PHP code In PHP code, we often use "<?php" and "?&
