I have 2 datatables
1) which runs a query and stores the values
Select customer, address,**zipcode** from sometable where zipcode = ?
mycmd.Parameters.Add("@zipcode", OdbcType.VarChar).Value = {**how to bring the value from datatable 2 zip**;
into datatable?
2) which reads a csv file into datatable zip,lat,long
I am running a foreach loop on datarows from datatable 1 and
If rows was found match zip values in the where condition I then want to include the lat and long values from the datatable 2
My end result will look like customer, address,zipcode,lat,long.
I searched several websites online but was not able to find any thing.
I can't post the two data table code in here, can I?