首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 软件管理 > 软件架构设计 >

ORACLE惯用函数实例

2013-08-06 
ORACLE常用函数实例1、set?linesize?100??设置长度 ???2、set?pagesize?30???设置每页显示数目 ???3、em?a.

ORACLE常用函数实例

1、set?linesize?100;??设置长度 ??

?2、set?pagesize?30;???设置每页显示数目 ??

?3、em?a.sql??打开记事本?? ??

?4、@?a?执行文件a中的代码,可指定文件的路径?@d:a.txt ??

?5、conn?用户名/密码??根据用户名和密码连接数据库?如果连接超级管理员(sys)?则应加上as?sysdba; ??

?6、show?user;?显示当前连接的用户 ??

?7、select?*?from?tab;??得到当前用户下的所有表 ??

?8、desc?temp;?查看表结构 ??

?9、/??继续执行上一个查询语句 ??

????clear?scr;??清屏 ??

??

字符函数 ??

10、select?upper('coolszy')?from?dual;?将小写字母转换成大写,dual?为一虚表 ??

11、select?lower('KUKA')?from?dual;?将大写字母转换成小写 ??

12、select?initcap('kuka')?from?dual;?将首字母大写? ??

13、select?concat('Hello','?world')?from?dual;?连接字符串,但没有||好用select?concat('Hello','world')?from?dual; ??

14、select?substr('hello',1,3)?from?dual;?截取字符串 ??

15、select?length('hello')?from?dual;?求字符串长度 ??

16、select?replace('hello','l','x')?from?dual;?替换字符串? ??

17、select?substr('hello',-3,3)?from?dual;?截取后三位 ??

??

数值函数 ??

18、select?round(789.536)?from?dual;?四舍五入,舍去小数 ??

19、select?round(789.536,2)?from?dual;?保留两位小数 ??

20、select?round(789.536,-1)?from?dual;?对整数进行四舍五入 ??

21、select?trunc(789.536)?from?dual;?舍去小数,但不进位 ??

22、select?trunc(789.536,2)?from?dual; ??

23、select?trunc(789.536,-2)?from?dual; ??

24、select?mod(10,3)?from?dual;?返回10%3的结果 ??

??

日期函数 ??

25、select?sysdate?from?dual;?返回当前日期 ??

26、select?months_between(sysdate,'16-6月?-08')?from?dual;?返回之间的月数 ??

27、select?add_months(sysdate,4)?from?dual;?在日期上加上月数 ??

28、select?next_day(sysdate,'星期一')?from?dual;?求下一个星期一 ??

29、select?last_day(sysdate)?from?dual;?求本月的最后一天 ??

??

??

转换函数 ??

30、select?to_char(sysdate,'yyyy')?year,to_char(sysdate,'mm'),to_char(sysdate,'dd')?from?dual; ??

31、select?to_char(sysdate,'yyyy-mm-dd')?from?dual; ??

32、select?to_char(sysdate,'fmyyyy-mm-dd')?from?dual;?取消月?日?前面的0 ??

33、select?to_char('20394','99,999')?from?dual;?分割钱?9表示格式 ??

34、select?to_char('2034','L99,999')?from?dual;?加上钱币符号 ??

35、select?to_number('123')*to_number('2')?from?dual; ??

36、select?to_date('1988-07-04','yyyy-mm-dd')?from?dual;? ??

??

通用函数 ??

37、select?nvl(null,0)?from?dual;?如果为null,则用0代替 ??

38、select?decode(1,1,'内容是1',2,'内容是2',3,'内容是3')?from?dual;?类似于?switch...case... ??

??

事务处理 ??

39、commit;??提交事务 ??

40、rollback;?回滚事务 ??

??

??

41、select?rownum?from?table;?在没一列前面显示行号 ??

42、drop?table?表名?cascade?constraint? ??

????on?delete?casecade?当父表中的内容被删除后,子表中的内容也被删除 ??

??

43、desc表名?显示表的结构 ??

44、create?user?[username]?identified?by?[password]?创建新的用户 ??

45、grant?权限1、权限2...to?用户??给创建用户权限 ??

?ex:grant?create?session?to?[username]?此时只能连接到数据库 ??

????grant?connect,resource?to?[username]?此时权限能满足要求 ??

46、alter?user?[username]?identified?by?[password]?修改用户密码 ??

47、alter?user?[username]?password?expired?下次登录时提示修改密码 ??

48、alter?user?[username]?account?lock??锁住用户 ??

49、alter?user?[username]?account?unlock??解锁锁用户 ??

50、grant?select,delete?on?scott.emp?to?[username]?把scott下emp表的两个权限给用户 ??

51、revoke?select?,delete?on?scott.emo?from?[username]?回收权限

热点排行