Sqlserver提供了一些字符串函数,以下说法正确的是哪三项

分类: LTE多选(建议随机,跳过IP/编程题目) 发布时间: 2023-11-28 17:52 浏览量: 1

Sqlserver提供了一些字符串函数,以下说法正确的是哪三项

A.select right('hello',3) 返回值为:hel

B.select ltrim(rtrim(' hello ')) 返回值为:hello(前后都无空格)

C.select replace('hello','e','o') 返回值为:hollo

D.select len('hello') 返回值为:5

正确答案是ACD