P
PIPUSER
I have a DataTable that I build from a .CSV file and that works fine. I then
update some SQL Server tables. To finish the job I need a query like the
following to run on the DataTable I have created:
"SELECT Shippernum,Date,Sum(Amount) as Amt,Sum(Premium) as Prem,Count(*) as
PKGS FROM pdsData.Tables(""Items"") GROUP BY Shippernum"
Can this be done with the Datatable.Select()??? Can something like this be
done using anything? Thanks in advance!
update some SQL Server tables. To finish the job I need a query like the
following to run on the DataTable I have created:
"SELECT Shippernum,Date,Sum(Amount) as Amt,Sum(Premium) as Prem,Count(*) as
PKGS FROM pdsData.Tables(""Items"") GROUP BY Shippernum"
Can this be done with the Datatable.Select()??? Can something like this be
done using anything? Thanks in advance!