DataTable newDataTable = new DataTable();newDataTable = oldDataTable.Clone();DataRow[] foundRows = oldDataTable.select("该处表达式怎么写"); for (int i = 0; i < foundRows.Length; i++) { newDataTable .ImportRow((DataRow)foundRows[i]); }