sql字符串替换函数是哪个吗
1个回答
展开全部
字符串函数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]回答完毕
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询