How would I search for say
2
3
4
5
6
in a field?
I tried comma seperating them but that didnt work. Im used to using the search function in phpmyadmin but have never needed to search for multiple things before.
Perhaps Id have to do a "query"?
| SitePoint Sponsor |

How would I search for say
2
3
4
5
6
in a field?
I tried comma seperating them but that didnt work. Im used to using the search function in phpmyadmin but have never needed to search for multiple things before.
Perhaps Id have to do a "query"?


Code:SELECT something FROM sometable WHERE somecolumn IN ( 2,3,4,5,6 )

Awesome, thanks worked fine.
Bookmarks