Jan
Wed Jan 21 08:14:05 CST 2004
Sure, you can use the AND operator:
myDataTable.Select("IDNum > 32 AND Region = "MidWest")
More info:
http://tinyurl.com/2cvqh
Concatenation is allowed using Boolean AND, OR, and NOT operators. You can
use parentheses to group clauses and force precedence. The AND operator has
precedence over other operators. For example:
(LastName = 'Smith' OR LastName = 'Jones') AND FirstName = 'John'
--
Greetz
Jan Tielens
________________________________
Read my weblog:
http://weblogs.asp.net/jan
"Nathan" <nkmacgregor.TakeThisOut@softhome.net> wrote in message
news:O6xNBfC4DHA.876@TK2MSFTNGP10.phx.gbl...
> Is there any way to do a DataSet.Select() statement and use more than one
> selection "query"? For instance, instead of just selecting all rows where
> the IDNum is greater than 32 with DataSet.Select("IDNum > 32"), select all
> rows where the IDNum > 32 and the Region = Midwest. Is this possible?
>
>