Oracle面向对象的应用实例(3)

来源:未知 责任编辑:责任编辑 发表时间:2015-05-17 16:44 点击:

values('001',

       ty_person('scott','M',to_date('1981-10-10','yyyy-mm-dd'),'beijing','0102345678'),

       ty_job('DBA','IT','smith'),

       ty_sal(8000,1000,500),

       ty_edu('Peking University',to_date('2004-10-10','yyyy-mm-dd'),'bachelor','bachelor'),

       null,null,null,null,null);

       

2.查询数据

select * from t_emp t;

--查某个类的数据

select t.person.name,t.person.sex,t.person.borthady,t.person.address,t.person.phone

  from t_emp t;


3.删除数据

delete t_emp t where  t.person.name='scott';


4.修改数据

update  t_emp t set t.person.name='Mark' 

 where t.person.name='scott';

 

UPDATE t_emp  e 

   SET e.person = ty_person('mark','M',to_date('1982-10-10','yyyy-mm-dd'),'neijing','0212345678')

 WHERE e.eid = '001'; 


基本的操作就是这些,更多的面向对象操作请查看Oracle文档。


本文出自 “srsunbing” 博客,请务必保留此出处http://srsunbing.blog.51cto.com/3221858/1591948

发表评论
请自觉遵守互联网相关的政策法规,严禁发布色情、暴力、反动的言论。
用户名: 验证码:点击我更换图片
最新评论 更多>>

推荐热点

  • 查看sql修改痕迹(SQL Change Tracking on Table)
  • Request.ServerVariables 参数大全
  • 写给MongoDB开发者的50条建议Tip1
  • Percolator与分布式事务思考(二)
  • SQL Server、Oracle、db2所提供的简装版(Express)比较
  • App数据层设计及云存储使用指南
  • PostgreSQL启动过程中的那些事三:加载GUC参数
  • 导入excel文件处理流程节点的解决方案
  • MongoDB安装为Windows服务方法与注意事项
网站首页 - 友情链接 - 网站地图 - TAG标签 - RSS订阅 - 内容搜索 - 移动版 - 返回顶部
Copyright © 2008-2015 计算机技术学习交流网. 版权所有

豫ICP备11007008号-1