
oracle
iteye_20050
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
oracle常用函数
数据库替换字符串:select translate( '4683,968,969 ', ', ', '$ ') from dual;连接两个字符串:select concat('hello','world')||',你好,世界' from dual; 待补充原创 2010-10-28 19:34:03 · 97 阅读 · 0 评论 -
oracle基本语句整理
创建序列create sequence SEQ_CARD_INFO_IDminvalue 1maxvalue 999999999999999999999999999start with 1increment by 1cache 20;添加列alter table BIZ_ORDER add order_number number default 0;comm...原创 2011-03-11 16:17:12 · 125 阅读 · 0 评论