string inClause = ""; //組裝SQL查詢子句 for (int i = 0; i < empIDList.Length; i++) { if (i > 0) { inClause += ", "; } inClause += " '" + ...
確定! 回上一頁