带游标的 PL/SQL 过程
我需要检查记录集中的任何列是否包含数据。
我必须检查 10 列的数据。如果数据不存在,则必须退出,否则继续下一步。
I need to check whether any of the column in record set contains data or not.
I have to check 10 columns for the data. If data is not there it has to exit otherwise continue to the next step.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
尝试
COALESCE(col_1,col_2,.....) IS NOT NULL
Try
COALESCE(col_1,col_2,.....) IS NOT NULL