2016年5月28日
摘要: --1.组函数--COUNT():用来统计记录的条数 如果没有记录,返回 0--COUNT函数可以根据一列或多列进行计算,没有排重功能--统计EMP表一共有多少条记录select count(empno) from emp;select count(*) from emp; --统计EMP中一共有多 阅读全文
posted @ 2016-05-28 10:39 依米妮 阅读(298) 评论(0) 推荐(0) 编辑
摘要: --1.字符函数--UPPER(string|column) 可以将字符转成大写select upper('helloword') from dual;select upper(ename) from emp; --LOWER(string|column) 将指定的字符串转换成小写select lo 阅读全文
posted @ 2016-05-28 09:20 依米妮 阅读(236) 评论(0) 推荐(0) 编辑