当前位置:网站首页>Oracle/PLSQL: Lower Function
Oracle/PLSQL: Lower Function
2022-06-27 01:35:00 【yuanlnet】
In Oracle/PLSQL, the lower function converts all letters in the specified string to lowercase. If there are characters in the string that are not letters, they are unaffected by this function.
Syntax
The syntax for the lower function is:
lower( string1 )
string1 is the string to convert to lowercase.
Applies To
- Oracle 11g, Oracle 10g, Oracle 9i, Oracle 8i
For Example
lower('Tech on the Net'); | would return 'tech on the net' |
lower('GEORGE BURNS 123 '); | would return 'george burns 123 ' |
边栏推荐
- flutter系列之:flutter中的flow
- Ymal文件的增删改查
- Clip: learning transferable visual models from natural language monitoring
- Arbre binaire OJ sujet
- Memcached foundation 5
- Config in UVM_ How to use the DB mechanism
- Esp32 add multi directory custom component
- Keepalived 实现 Redis AutoFailover (RedisHA)15
- Why divide the training set and the test set before normalization?
- Summary of working at home during the epidemic | community essay solicitation
猜你喜欢
随机推荐
memcached基础1
leetcode 1143. Longest Commom Subsequence 最长公共子序列(中等)
Visual introduction to Matplotlib and plotnine
Keepalived 实现 Redis AutoFailover (RedisHA)12
Count the logarithm of points that cannot reach each other in an undirected graph [classic adjacency table building +dfs Statistics - > query set optimization] [query set manual / write details]
CLIP:从自然语言监督中学习可迁移的视觉模型
Systematic analysis of social networks using Networkx: Facebook network analysis case
SystemVerilog仿真速率提升
Analysis of ideal L9 product power: the price is 459800 yuan, the four cylinder engine is adopted, and the endurance is 1315km
leetcode 1143. Longest common subsequence (medium)
Why divide the training set and the test set before normalization?
每日刷题记录 (五)
UVM中uvm_config_db在sequence中的使用
Topolvm: kubernetes local persistence scheme based on LVM, capacity aware, dynamically create PV, and easily use local disk
Kept to implement redis autofailover (redisha) 11
Pointer compression for JVM
Keepalived 实现 Redis AutoFailover (RedisHA)14
cookie,sessionstorage,localstorage区别
Summary of config mechanism and methods in UVM (1)
flutter系列之:flutter中的flow








