在 pl/sql 中创建触发器
我有一个问题,我想创建一个检查 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我想你的意思是你的问题中的一个字符列,如果是的话 - 你可以在没有触发器的情况下实现这一点,但使用这样的检查约束:
运行这些插入:
将导致错误:
但是这个没问题:
I suppose you mean a character column in your question, if so - you can achieve this without trigger but using check constraint like this:
Running these inserts:
Will result the error:
But this one goes ok: