你要写一个循环语句,把数组中的值用逗号隔开,拼成一个字符串,就像这样:“1111,2222,3333……”,然后放到括号里,代替现在sql语句中的postid变量
string ids="";
for(int i=0;i
ids+=PostIds[i];
if(i
ids+=",";
}
}
String sql=@" select distinct DepartmentId from POSITION where PostId in("+ids+")";
String sql=" select distinct from POSITION where PostId =("+PostIds+")";
怎么了?有啥问题...