
ORACLE
jameslee219
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
更新ResultSet中字段值
可以用以下两种方式使用更新方法: 1、更新当前行中的列值。在可滚动的 ResultSet 对象中,可以向前和向后移动光标,将其置于绝对位置或相对于当前行的位置。以下代码片段更新 ResultSet 对象 rs 第五行中的 NAME 列,然后使用方法 updateRow 更新导出 rs 的数据源表。 rs.absolute(5); // moves the cursor to ...2010-03-10 19:02:19 · 590 阅读 · 0 评论 -
Oracle常用的字符和字符串处理类函数
###################################### 常用的字符和字符串处理类函数##################################### # LOWER函数作用:将字符串转换成为小写字母示例: select firstname,lastname from customers where LOWER(lastname) = 'nelson';...2010-03-15 18:43:13 · 165 阅读 · 0 评论 -
会用到的SQL
SQL语句: 表: select * from cat; select * from tab; select table_name from user_tables; 视图: select text from user_views where view_name=upper('&view_name'); 索引: select index_name,table...2010-03-15 18:48:35 · 142 阅读 · 0 评论