如果值不为NULL,如何更新列

时间:2017-01-09 12:25:23

标签: sql sql-server tsql null sql-update

如果从C#输入的值不是TBL_Log,我想更新表NULL的任何列。这是我的存储过程:

Alter PROCEDURE [dbo].[SP_Update_User] 
(@User_id as int,@User_Names as nvarchar(max),@End as char(8),@Start as nvarchar(max) ,@Count as int)

AS
BEGIN


UPDATE [dbo].[TBL_Log]


     SET User_Names = @User_Names
      ,[Start] = @start
      ,[End] = @End
      ,[Count] = @Count
      where User_id = @User_id



END

我试图做这项工作,但没有成功。

D1类中的

代码:

public static DataSet Update_User(int @User_id, string @User_Names, string @End, string @Start, int @Count)
    {

        SqlConnection myConnection = new SqlConnection(strConecctionString);


        SqlDataAdapter sqlcmd = new SqlDataAdapter("SP_Update_UserData_Bot", myConnection);
        sqlcmd.SelectCommand.CommandType = CommandType.StoredProcedure;


        SqlParameter parameterID_category_ID = new SqlParameter("@User_id", SqlDbType.Int);
        parameterID_category_ID.Value = User_id;
        sqlcmd.SelectCommand.Parameters.Add(parameterID_category_ID);

        SqlParameter parameterID_Part_ID = new SqlParameter("@User_Names", SqlDbType.Int);
        parameterID_Part_ID.Value = User_Names;
        sqlcmd.SelectCommand.Parameters.Add(parameterID_Part_ID);


        SqlParameter parameterID_Series_ID = new SqlParameter("@End", SqlDbType.Char);
        parameterID_Series_ID.Value = End;
        sqlcmd.SelectCommand.Parameters.Add(parameterID_Series_ID);

        SqlParameter parameterID_Model_ID = new SqlParameter("@start", SqlDbType.NVarChar);
        parameterID_Model_ID.Value = start;
        sqlcmd.SelectCommand.Parameters.Add(parameterID_Model_ID);

        SqlParameter parameterID_Count = new SqlParameter("@Count", SqlDbType.Int);
        parameterID_Count.Value = Count;
        sqlcmd.SelectCommand.Parameters.Add(parameterID_Count);


        sqlcmd.SelectCommand.CommandTimeout = int.MaxValue;
        DataSet DS = new DataSet();
        sqlcmd.Fill(DS);


        return DS;

    }

3 个答案:

答案 0 :(得分:6)

这将仅更新非空值。如果值为null,则列将更新回其自己的值。

UPDATE [dbo].[TBL_Log]
SET    User_Names = isnull(@User_Names, User_Names)
     , [Start] = isnull(@start, [Start])
     , [End] = isnull(@End, [End])
     , [Count] = isnull(@Count, [Count])
where User_id = @User_id

答案 1 :(得分:1)

您应该显示.Net代码。添加检查的最佳位置可能是.NET,如果您担心的值为NULL,则不要调用存储过程。

此外,您必须指定哪个值不应为空,但假设您有任何意义,您可以这样做:

IF (@User_Names IS NULL OR @start IS NULL OR @End IS NULL OR @Count IS NULL OR @User_Id IS NULL)
BEGIN
    RETURN
END

如果任何参数为null而不更新表

,则将退出存储过程

给定c#代码,当值为null或抛出异常时,您可以不调用存储过程。此外,您应该考虑使用DateTime而不是字符串作为日期值。

您可以在c#代码中执行以下操作:

if (@User_Names == null || @End == null || @Start == null)
  return;

或者最好

if (@User_Names == null || @End == null || @Start == null)
  throw new ArgumentNullException();

您甚至可以单独检查每个参数,并将其名称作为参数传递给Exception,以提供有意义的错误消息。

答案 2 :(得分:0)

您注释掉的逻辑很好:

UPDATE [dbo].[TBL_Log]
     SET User_Names = @User_Names,
         [Start] = @start,
         [End] = @End,
         [Count] = @Count
      where User_id = @User_id and
            (@User_Names is not null and
             @AkharinBazdid is not null and
             @Pid_Bazdid  IS NOT NULL and
             @C_Bazdid IS NOT NULL
            );

如果您愿意,也可以使用IF

注意:

  • 不要将SQL关键字和保留字用作列名。逃脱角色只会妨碍你。
  • 如果startend是日期/时间,请使用相应的类型。不要使用字符串。