Basically I want to know how to select a specific column by calling its name and compare its row value to a string/int.
This is my datatable https://i.stack.imgur.com/LgYVd.png
Something like this: iterate through particular column in a datatable
adp.Fill(ds); //Fill Dataset
dt = ds.Tables[0]; //Then assign table to dt
foreach (DataRow row in dt.Rows)
{
}