Oracle面向对象的应用实例(3)
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
相关新闻>>
- 发表评论
-
- 最新评论 更多>>