1
oracle 的 不等于 !=,用 <> 符号
2
oracle对数据的升序降序,使用 order by
3
函数 to_char 处理字符串
to_date 处理日期
to_number 处理数字
nvl 将空值转换为指定值
通过使用 nvl 函数,将 comm中含有null值的转换成 0
oracle 的 不等于 !=,用 <> 符号
2
oracle对数据的升序降序,使用 order by
select ename,sal,deptno from emp
where deptno <> 10
order by deptno asc,sal desc;
3
函数 to_char 处理字符串
to_date 处理日期
to_number 处理数字
nvl 将空值转换为指定值
select ename,sal*12 + nvl(comm,0) from emp;
通过使用 nvl 函数,将 comm中含有null值的转换成 0