✎
编程开发网
首页
C语言
C++
面试
Linux
函数
Windows
数据库
下载
搜索
当前位置:
首页
->
基础
->
数据库编程
Oracle Length() and Lengthb()
2014-11-24 11:27:14
·
作者:
·
浏览:
1
标签:
Oracle
Length
and
Lengthb
Oracle
Length() and Lengthb()
Sql代码
SELECT Length('字'),LengthB('字'),Length('B'),LengthB('B') FROM dual;
Output代码
LENGTH('字')LENGTHB('字')LENGTH('B')LENGTHB('B')
1 3 1 1
不懂为什么是3,很多资料都写的是2.