标签:
1、oracle区分大小写
2、格式敏感
3、默认日期格式:DD-MON-RR
更改:select * from v$nls_parameters ——alert session set nls_date_format=‘yyyy-mm-dd‘(session 表示当前回话范围)
4、赋值:=
5、select *from table where sal between 1000 and 2000(大小不能换)
6、select * from table where deptno in(10,20)/not in(10,20) not in()里不能用null7、插入语句:insert into table(列表名1,列表名2) values(对应值);
8、转义字符:select* from table where name like ‘%_%‘ 因为—表示任意一个字符,此处用转义字符 escape‘\‘
select* from table where name like ‘%\_%‘ escape ‘\‘ 表示有—的name
9、oracle自动开启事务
10、 where 从右往左执行,and把为假大的放右,or把为真大的概率的条件放右
11、order by select * from table order by 列名,表达式,别名,序号(默认升序,降序的话在列名后+desc)desc只作用离它最近的列名。order by作用所有的列
12、分页设置 set pagesize 20
13、order by select * from table order by name desc nulls last 如果有null 放最后 oracle null最大
标签:
原文地址:http://www.cnblogs.com/baijin05/p/5048838.html