Hi, I m usng Ms-Access 2007 with vb.net.
My problem is that I have a table with column name strval which has following values:
2,3,43,5,6 etc in each row.
Now I want to search for that row which contains e.g 2 in cloumn strval .
i use
SELECT *
FROM tbl where tbl.strval IN( '2' )
but this doesn't work.
Please help.
Thanks