如何使用storedprocedure在多个表中插入值? [英] How to insert values in multiple tables using storedprocedure?

查看:66
本文介绍了如何使用storedprocedure在多个表中插入值?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

如何使用storedprocedure在多个表中插入值?
什么是错误日志和如何使用?

How to insert values in multiple tables using storedprocedure?
What is errorlog & How to use?

推荐答案

OP写道:

如何使用存储过程在多个表中插入值?

How to insert values in multiple tables using storedprocedure?


大不了?


Big deal?

CREATE PROCEDURE Usp_StudentDetails(@StudentID int, @StudentName Varchar(50), @Mark int)
AS
BEGIN
   INSERT INTO Tbl_Student(StudentID,StudentName) VALUES(@StudentID,@StudentName)
   INSERT INTO Tbl_Marks(StudentID,Mark) VALUES(@StudentID,@Mark)
END


BTW根据您的需求自定义内容.也使用Try Catch.


BTW customize things based on your need. Also use Try Catch.

OP写道:

什么是错误日志&如何使用?

What is errorlog & How to use?


在这里你
SQL Server错误日志 [ ^ ]
SQL Server 2005错误日志管理 [


Here you go
SQL Server Error Logs[^]
SQL Server 2005 Error Log Management[^]


在存储的proc内写入多个更新语句
write multiple update statements inside a stored proc


这篇关于如何使用storedprocedure在多个表中插入值?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆