第一组函数☞
(适用于 SQL Server / MySQL / Oracle )
- 小写转换成大写
select upper('hello world!')
- 大写转换成小写
select lower('HELLO WORLD!')
第二组函数☞
(适用于 MySQL )
- 小写转换成大写
select UCASE('hello world!')
- 大写转换成小写
select LCASE('HELLO WORLD!')
第一组函数☞
(适用于 SQL Server / MySQL / Oracle )
select upper('hello world!')
select lower('HELLO WORLD!')
第二组函数☞
(适用于 MySQL )
select UCASE('hello world!')
select LCASE('HELLO WORLD!')