我有一个文本框和一个按钮,我有一个包含 EmpID 和日期的数据库。所以我想根据日期而不是确切的日期删除一个 EmpId。
假设 DB 中的 EmpId=2 和 Date=02/20/2012。即使我输入 02/25/2012 或 02/01/2012 也应该能够删除它,因此如果月份和年份匹配,则应将其删除。我在文本框中输入日期。
con.Open();
try
{
SqlCommand Delete = new SqlCommand("delete from Table2 where Date= ('" + TextBox1.Text + "')", con);
Delete.ExecuteNonQuery();
}
catch (Exception ex)
{
Console.writeLine("Error");
}