dataTable.Select()怎么用?
从数据库中查询到的数据表DTall,想在其中查询数据:
DataRow[] dtrPrice = DTall.Select("price,receipt");
其中price,receipt是数据库字段,运行时提示语法错误,该怎么写?
------解决方案--------------------记住,select方法中需要filterExpression,而不是指定字段名。
http://msdn.microsoft.com/en-us/library/det4aw50.aspx
------解决方案--------------------Select方法:
Select();//全部查出来
Select(过滤条件);//根据过滤条件进行过滤,如Select("columnname1 like '%xx%'");
Select(过滤条件,排序字段);//过滤,并排序,如Select("columnname1 like '%xx%'",columnname2);
你要查出指定的2个列 那select不满足你的要求