以及如何在删除父表时首先删除与子表关联的记录

以及如何在删除父表时首先删除与子表关联的记录

本文介绍了如何从父表中删除记录,以及如何在删除父表时首先删除与子表关联的记录.的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

请帮我创建一个过程,其中有两个表,一个是父表,另一个是子表.因此,如果我从父表中删除内容,则在删除内容时应先删除与子表关联的记录,然后再删除父表.在过程中,我必须使用开始事务,回滚和提交,就好像子表中的记录之一(如果它处于编辑模式),那么在删除记录时不能b删除,因为如果它不在编辑模式中应该回滚,那么它应该b提交.

并请帮助我如何测试它是否处于编辑模式..在此先感谢...

解决方案




hi please help me to create a procedure in which there are two tables one is parent table and other is child table. so if i delete content from parent table then while deleting it should first delete the records associated with child table first and then the parent table. in procedure i have to use begin transaction, rollback and commit as if one of the records from child table if it is in edit mode then while deleting the records can not b deleted as it should be rollback if its not in edit mode then it should b commit.

and please help me how to test the if it is in edited mode.. thanks in advance...

解决方案




这篇关于如何从父表中删除记录,以及如何在删除父表时首先删除与子表关联的记录.的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

09-05 03:30