我已经应用了内部联接查询,并将结果存储在一个名为“ abc”的变量中。现在,我应用了where子句查询并将其存储在另一个变量“ xyz”中。但是问题是我想把where子句与abc中存储的数据进行比较。在xyz中,我想从abc中存储的结果中获取数据。
希望你们明白我的意思,如果不请告诉我。
任何帮助将不胜感激。 :)
private bool CheckEmployeeNo()
{
using (SqlConnection con = new SqlConnection(Base.GetConnection))
{
using (SqlCommand cmd = new SqlCommand("SELECT COUNT(*) FROM [TableEmployee] WHERE EmployeeNo=@EmployeeNo", con))
{
cmd.CommandType = CommandType.Text;
cmd.Parameters.AddWithValue("@EmployeeNo", tbEmployeeNumber.Text);
con.Open();
int UserExist = Convert.ToInt32(cmd.ExecuteScalar());
if (UserExist > 0)
{
string myMessage = "Here my msg goes...";
ClientScript.RegisterStartupScript(this.GetType(), "alert", "alert('Erroe " + myMessage + "');", true);
//lblMsg.Text = "Error: Message goes here.";
//lblMsg.ForeColor = Color.Red;
return false;
}
}
}
return true;
}