Oracle数据库中传入REF

发布于 2024-10-06 16:02:30 字数 481 浏览 3 评论 0原文

我收到 ORA-00907:缺少右括号。我相信我有一对正确的括号。当我插入员工记录时,我试图将服务类型的引用传递给员工类型。

INSERT INTO Person VALUES 
 (FullTimeEmployeeType (1, 
                       NameType('David', 'R', 'Jones'),
                       'M',  
                       AddressType('123 somewhere', '', 'London', 'UD', '84042'), 
                       '8030349092','',
                       '1978-05-26', 
                       REF <servicerType>, 
                       40000)
 );

I got ORA-00907: missing right parenthesis. I believe I have right pairs of parenthesis. I'm trying to pass a reference of service type to employee type when I insert an employee record.

INSERT INTO Person VALUES 
 (FullTimeEmployeeType (1, 
                       NameType('David', 'R', 'Jones'),
                       'M',  
                       AddressType('123 somewhere', '', 'London', 'UD', '84042'), 
                       '8030349092','',
                       '1978-05-26', 
                       REF <servicerType>, 
                       40000)
 );

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

夏末染殇 2024-10-13 16:02:30

我数了4个“(”和3个“)”

I count 4 "(" and 3 ")"

吝吻 2024-10-13 16:02:30

看起来 REF 需要括号比 a < >

SELECT REF(p) 
  FROM person_obj_table p

Looks like the REF expects brackets rather than a < >

SELECT REF(p) 
  FROM person_obj_table p
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文