Hi. Im having some problems to understand how to make search in SQL database
actually I use this code
DV.RowFilter = String.Format("name Like '%{0}%'", TextBox1.Text)
DataGridView1.DataSource = DV
and it work, but Im trying to show in a datagrid view results from the table but searched by 2 or more words
for example in table1 I have all the names of people in my city and their current jobs,
and in datagrid view I want to show all people who's called Andrea and in the some time is a cop (or something else)
any suggestion?