[转自] http://blog.chinaunix.net/uid-8504518-id-3310531.html 为避免日趋衰退的记忆力,参考官方E文文档<Introduction to Oracle9i:SQL Ed 2.0.pdf>第20章,写成自己的文字,以供日后查阅. 一.Insert基础用法 语法: Insert Into 表名 (字段1,字段2,字段3...) Values (值1,值2,值3...) 例子: INSERT INTO departments(d…
oracle的substr函数的用法 取得字符串中指定起始位置和长度的字符串 substr( string, start_position, [ length ] ) 如: substr('This is a test', 6, 2) would return 'is' substr('This is a test', 6) would return 'is a test' substr('TechOnTheNet', -3, 3) would…