必须会的SQL语句(七) 字符串函数、时间函数

字符串函数


1.大小写转换
--upper 转化成大写
--lower 转换成小写
select upper('AsaR')

2.长度
--len 字数
--datalength 字节数

3.去除前后空格
--rtrim 去除右边空格
--ltrim 去除左边空格

4.字符串截取
--Left('串',15) 从左侧开始 截取15个字节
--right('串',15) 从右侧开始 截取15个字节
--SubString('串',5,5) 从左侧第5个字节开始,截取5个字节

5.字符串替换
--replace('你们','你','我') 把你们 替换成 我们

时间函


1.获取当前日期
--getdate()

2.100天以后
--dateadd(day,100,getdate())

3.时间差函数
--dateiff(year,'1990/10/11',getdate())

4.查询年月日
--year(时间) 获取
--month(时间) 获取
--day(时间) 获取
————————————————
--计算出每个年份出生的人数
select year(birthday),count(*)
from 表
group by year([birthday])

5.获取日期的年、月、日、时、分、秒
datepart(year,日期)
datepart(month,日期)
datepart(day,日期)
datepart(hour,日期)
datepart(minute,日期)
datepart(second,日期)

相关文章

SELECT a.*,b.dp_name,c.pa_name,fm_name=(CASE WHEN a.fm_n...
if not exists(select name from syscolumns where name=&am...
select a.*,pano=a.pa_no,b.pa_name,f.dp_name,e.fw_state_n...
要在 SQL Server 2019 中设置定时自动重启,可以使用 Window...
您收到的错误消息表明数据库 'EastRiver' 的...
首先我需要查询出需要使用SQL Server Profiler跟踪的数据库标...