I have a table named people. I have 2 rows named "name" and "description"
I want to do a SQL query that will select the rows that contain a certain word in the "description" row.
I just dont remember how to do a contain query. ANy help please?
| SitePoint Sponsor |
I have a table named people. I have 2 rows named "name" and "description"
I want to do a SQL query that will select the rows that contain a certain word in the "description" row.
I just dont remember how to do a contain query. ANy help please?





select * from table where description like '%word%'
Bookmarks