62,254
社区成员
发帖
与我相关
我的任务
分享
string strSql = "select * from studentTable where '"+courseMark+"'>='" +normal+"'";
string strSql = "select * from studentTable where courseMark >= " + normal;
string strSql = "select * from studentTable where "+courseMark+">=" + normal;
string.Format("string.select * from studentTable where courseMark >= {0}",normal);