在 pl/sql 中创建触发器

发布于 2024-10-21 05:17:10 字数 68 浏览 2 评论 0原文

我有一个问题,我想创建一个检查 Pincode 号码的触发器 是否正好是六位数字。

请告诉我详细的答案。

i have a problem that i want to create an trigger that checks the Pincode number
is exactly six of digit or not.

please tell me an detail answer.

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

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

发布评论

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

评论(1

零崎曲识 2024-10-28 05:17:10

我想你的意思是你的问题中的一个字符列,如果是的话 - 你可以在没有触发器的情况下实现这一点,但使用这样的检查约束:

create table test_1
(
pincode varchar2(20)
  constraint test_1$chk$id check (ltrim(pincode, '0123456789') is null and length(pincode)= 6)
);

运行这些插入:

insert into test_1 (pincode) values ('45sdgf65');
insert into test_1 (pincode) values ('4565');

将导致错误:

ORA-02290: check constraint (ANDREW.TEST_1$CHK$ID) violated

但是这个没问题:

insert into test_1 (pincode) values ('034565');

I suppose you mean a character column in your question, if so - you can achieve this without trigger but using check constraint like this:

create table test_1
(
pincode varchar2(20)
  constraint test_1$chk$id check (ltrim(pincode, '0123456789') is null and length(pincode)= 6)
);

Running these inserts:

insert into test_1 (pincode) values ('45sdgf65');
insert into test_1 (pincode) values ('4565');

Will result the error:

ORA-02290: check constraint (ANDREW.TEST_1$CHK$ID) violated

But this one goes ok:

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