gilgalbiblewhee
02-04-2005, 07:19 PM
I have 6 textboxes where if I fill them up I want the query to search if either one of them has results found. I have this but it's not working:
SQL = "SELECT * FROM bible WHERE "
SQL = SQL & "text_data LIKE '%" & Keyword & "%' OR "
SQL = SQL & "text_data LIKE '%" & Keywordb & "%' OR "
SQL = SQL & "text_data LIKE '%" & Keywordc & "%' OR "
SQL = SQL & "text_data LIKE '%" & Keywordd & "%' OR "
SQL = SQL & "text_data LIKE '%" & Keyworde & "%' OR "
SQL = SQL & "text_data LIKE '%" & Keywordf & "%' AND "
SQL = SQL & "book_spoke = '" & spoke_number & "'"
iCounter = iCounter + 1
(I would like to know the use of the iCounter since I use it from other examples but don't know why it's there.)
I've tried this too but this gives every record within
"book_spoke = '" & spoke_number & "'"
SQL = "SELECT * FROM bible WHERE "
SQL = SQL & "book_spoke = '" & spoke_number & "'"
SQL = SQL & " AND ("
SQL = SQL & "text_data LIKE '%" & Keyword & "%' OR "
SQL = SQL & "text_data LIKE '%" & Keywordb & "%' OR "
SQL = SQL & "text_data LIKE '%" & Keywordc & "%' OR "
SQL = SQL & "text_data LIKE '%" & Keywordd & "%' OR "
SQL = SQL & "text_data LIKE '%" & Keyworde & "%' OR "
SQL = SQL & "text_data LIKE '%" & Keywordf & "%'"
SQL = SQL & " )"
SQL = "SELECT * FROM bible WHERE "
SQL = SQL & "text_data LIKE '%" & Keyword & "%' OR "
SQL = SQL & "text_data LIKE '%" & Keywordb & "%' OR "
SQL = SQL & "text_data LIKE '%" & Keywordc & "%' OR "
SQL = SQL & "text_data LIKE '%" & Keywordd & "%' OR "
SQL = SQL & "text_data LIKE '%" & Keyworde & "%' OR "
SQL = SQL & "text_data LIKE '%" & Keywordf & "%' AND "
SQL = SQL & "book_spoke = '" & spoke_number & "'"
iCounter = iCounter + 1
(I would like to know the use of the iCounter since I use it from other examples but don't know why it's there.)
I've tried this too but this gives every record within
"book_spoke = '" & spoke_number & "'"
SQL = "SELECT * FROM bible WHERE "
SQL = SQL & "book_spoke = '" & spoke_number & "'"
SQL = SQL & " AND ("
SQL = SQL & "text_data LIKE '%" & Keyword & "%' OR "
SQL = SQL & "text_data LIKE '%" & Keywordb & "%' OR "
SQL = SQL & "text_data LIKE '%" & Keywordc & "%' OR "
SQL = SQL & "text_data LIKE '%" & Keywordd & "%' OR "
SQL = SQL & "text_data LIKE '%" & Keyworde & "%' OR "
SQL = SQL & "text_data LIKE '%" & Keywordf & "%'"
SQL = SQL & " )"