当将数据保存到两个表中时,我得到错误“”;子查询返回了一个以上的值“;

本文关键字:错误 查询 一个以 返回 保存 数据 两个 | 更新日期: 2023-09-27 18:27:54

单击按钮后,我试图将数据保存到两个表中。

错误:

子查询返回了多个值。当子查询跟随=,!=<lt;=>gt;=或者当子查询用作表达。

我的aspx代码:

protected void txtsave_Click(object sender, EventArgs e)
{
        try
        {
            SqlCommand cmd = new SqlCommand("Insert_MainTable", con);
            cmd.CommandType = CommandType.StoredProcedure;
            cmd.Parameters.AddWithValue("@Name", txtname.Text);
            cmd.Parameters.AddWithValue("@Addr", txtaddr.Text);
            cmd.Parameters.AddWithValue("@Qual", txtqual.Text);
            cmd.Parameters.AddWithValue("@Dob", txtdob.Text);
            con.Open();
            cmd.ExecuteNonQuery();
            con.Close();
        }
        catch { }
    }
}

我的程序:

USE [Harish]
GO
/****** Object:  StoredProcedure [dbo].[Insert_MainTable]    Script Date: 24-12-2015 16:36:19 ******/
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
ALTER procedure [dbo].[Insert_MainTable]

@Name varchar(50),
@Addr varchar(50),
@Qual varchar(50),
@Dob varchar(50)
as begin

insert into MainPracticeTable(Name,Addr) values(@Name,@Addr)
declare @Eid int
set @Eid=(select Id from MainPracticeTable where Name=@Name)

insert into  PracticeTable(Eid,Qual,Dob)values(@Eid,@Qual,@Dob)
end

当将数据保存到两个表中时,我得到错误“”;子查询返回了一个以上的值“;

此语句返回多行

select Id from MainPracticeTable where Name=@Name

因此,要么修复where子句,要么使用order by 添加top关键字

set @Eid=(select TOP 1 Id from MainPracticeTable where Name=@Name order by somecol)

select @Eid= Id from MainPracticeTable where Name=@Name