摘要: 1 字符串连接 SQL> select 'abc' || 'def' from dual; 'ABC'| ------ abcdef 2 小写 SQL>select lower('ABC012'); lower -------- abc012 3 大写 select upper('abc012'); upper -------- ABC012 4 左补全 select lpad('... 阅读全文
posted @ 2008-06-03 15:17 蜀山雪狼 阅读(1687) 评论(0) 推荐(0) 编辑