摘要: 1.instr在Oracle/PLSQL中,instr函数返回要截取的字符串在源字符串中的位置。语法如下:instr( string1, string2 [, start_position [, nth_appearance ] ] )string1源字符串,要在此字符串中查找。string2要在s... 阅读全文
posted @ 2015-11-10 09:59 java高级技术汇 阅读(322) 评论(0) 推荐(0) 编辑
摘要: 1. 内连接很简单select A.*, B.* from A,B where A.id = B.idselect A.*, B.* from A inner join B on A.id = B.id以上两句是完全等价的2. 左外连接select * from emp a left join de... 阅读全文
posted @ 2015-11-10 09:47 java高级技术汇 阅读(1117) 评论(0) 推荐(0) 编辑