for example:
i have the following excel table for e.g.:
user Id | number
----------------
1 | 0
1 | 2
2 | 1
and i want to return the data referent to the user with id=1
for eg:
select *
from table
where userId =1
How can I transcribe this into
Vb???
But then i want to set the results of this select into some variables...