using (SqlCommand cmd = new SqlCommand("update UserInfo set ErrTimes=ErrTimes+1 where id=" + id, conn)) 这里面的SQl语句是什么意思
与下面这句sql语句的区别
“update UserInfo set ErrTimes=ErrTimes+1 where id=‘“+id+”’”
update UserInfo set ErrTimes=ErrTimes+1 where id=" + id
意思就是:更新一条数据库记录 Errtimes 字段的值;
“update UserInfo set ErrTimes=ErrTimes+1 where id=‘“+id+”’”
和上面的SQL语句是一样的 !!
这两句没有任何区别,效果都是一样的