SQL函数总结笔记

1、stuff函数

update aa set code = stuff(code,3,0,’2′)

解析:aa为表名,code为列名,3代表我要插入或删除字符的位置,0代表我要删除的字符个数,’2’代表我插入的字符。 

2、n

select * from aa where name=n’李四’

解析:遇到取数出现乱码,可在字符串前方加n,规整字符串。

3、concat函数

select concat(name,id)from aa

解析:concat函数 会把两列字符拼接成一列字符串返回

 4、first函数

 select first(name)from aa

解析:first函数会把name列的第一个值返回。可使用 order by 语句对记录进行排序。

5、last函数

select last(name)from aa

解析: last函数会把name列的最后一个值返回。可使用 order by 语句对记录进行排序。

6、ucase函数和lcase函数

select ucase(name)from aa

解析: ucase函数会把name列含有英文小写字母转换为大写,lcase函数把大写转换为小写。

7、substring函数

select  substring(name,2,1)from aa

解析:substring函数会从列字符串的位置2截取出1个字符,之前听说mid也可,试了下sql server没有这个内置函数,不过substring函数也能实现截取字符串。

后续慢慢添加……………

 

(0)
上一篇 2022年3月21日
下一篇 2022年3月21日

相关推荐