This is how you check if the column's value is null
if (table.Rows.Count > 0) // if table is not empty
{
if (Convert.IsDBNull(table.Rows[0]["columnName"])) // It's checking null value for columnName 'columnName' of first row
{
//This column's value is null
}
else
{
//column has value other than null
}
}