reverse() 反转字符串
http://msdnmicrosoftcom/zh-cn/library/ms180040aspx
charindex() 找到第一个字符位置
http://msdnmicrosoftcom/zh-cn/library/ms186323aspx
rigth() 从右侧开始截取字符串
http://msdnmicrosoftcom/zh-cn/library/ms177532aspx
赫赫,自己动手吧
正常的话,你那么写没错,但我觉得你应该是取后四位吧
Update 成绩表 Set lsh=mid(zkzh,5,4)
从第5个字符开始取,取4位长度
实在不行,你换right试试
Update 成绩表 Set lsh=right(zkzh,4)
这个也是取后四位
我怀疑你那个错是vb里大小写的关系吧,你把mid改成Mid试试
SQL 获取字符长度使用len函数
一、函数功能:函数返回文本字段中值或者字符串的长度。
二、语法:LEN(字段或字符串)
三、 实例
1、实例表格:"Persons"
2、获取 "City" 列中值的长度。
SQL 语句:
SELECT LEN(City) as LengthOfCity FROM Persons检索结果:
3、直接获取字符串的长度
select len('测试字符串') as '字符串长度';字符串函数select substring('abcde',3,2)select upper('abCD123')select lower('abCD123')select ltrim(' abc')select rtrim(' abc ') --将一个字符串插入到另一字符串。在插入新字符串时将从原来的字符串中删除指定长度的字符--stuff(string, insertion position, delete count, string inserted)select stuff('abcdef',3,2,'1234') --Replace(source, search, replace)select replace('abcd','cd','fe') 时间函数--获取当前日期select getdate()--对日期进行减运算select DateDiff(yy,' 1984/5/20',GetDate())AS MarriedYears--对日期进行加运算select DateAdd(hh,100,GetDate()) AS [100HoursFromNow]--返回datetime值的指定日期部分的整数值select DatePart(DayofYear,GetDate())As DayCount--从日期中获取年,月,日select day('03/12/1998') as [Day] ,month('03/12/1998') as [Month], year('03/12/1998') as [Year]回答完毕
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)