1单行函数分为五种类型:字符函数、数值函数、日期函数、转换函数、通用函数 比如: --大小写控制函数 select lower('Hello World') 转小写, upper('Hello World') 转大写 from dual; --initcap: 首字母大写 select initcap('hello world') 首字....