Home > Database > Mysql Tutorial > sql datalength与len区别用法

sql datalength与len区别用法

WBOY
Release: 2016-06-07 17:48:01
Original
1544 people have browsed it

len ( string_expression )参数:要计算的字符串

len() 函数
len 函数返回文本字段中值的长度。

sql len() 语法
select len(column_name) from table_name

我们希望取得 "city" 列中值的长度。

我们使用如下 sql 语句:

select len(city) as lengthofaddress from persons


返回指定字符串表达式的字符数,其中不包含尾随空格。
如果 expression 的数据类型为 varchar(max)、nvarchar(max) 或 varbinary(max),则为 bigint;否则为 int。
不可以对ntext字段进行计算


datalength ( expression ) 参数:任何数据类型的表达式

语法
datalength ( expression )

参数
expression

任何类型的表达式。

返回类型
int

use adventureworks2008r2;
go
select length = datalength(name), name
from production.product
order by name;
go


返回用于表示任何表达式的字节数。
如果 expression 的数据类型为 varchar(max)、nvarchar(max) 或 varbinary(max) 数据类型,则返回 bigint;否则返回 int。
对于 varchar、varbinary、text、image、nvarchar 和 ntext 数据类型,datalength 尤其有用,因为这些数据类型可以存储长度可变的数据。
null 的 datalength 的结果是 null。

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template