呵呵,我做过.
internal void SetOnTop(string strConn,int articleId)
{
              //设置是否固顶文章
string selectSQL="if (select ontop from article where id_article="+articleId+")='是' begin update article set ontop='否' where id_article="+articleId+" end else begin update article set ontop='是' where id_article="+articleId+" end";
OleDbConnection conn=new OleDbConnection(strConn);
OleDbCommand delecommand=new OleDbCommand(selectSQL,conn);
//delecommand.Parameters.Add(new OleDbParameter("@id_article",OleDbType.VarChar,10));

//delecommand.Parameters["@id_article"].Value=articleId;
conn.Open();
try
{
delecommand.ExecuteNonQuery();
}

finally
{
conn.Close();
}
}以上是我的代码,自己看看吧,改一下就可以了,把"是"改为"已审","否"改为"未审"就可以了