SQL: So, I'm trying to make a query with a condition comparing "Row" values with a value of textbox placed in a form (using MS Access '10) with use of wildcards, and this line which is propably wrong in bold part, but I got little idea what to do:
SELECT Table.*
FROM Table
WHERE (((Table.Row) Like '%"[Forms]![SomeForm]![Texbox1]"%'));
Ideas?
Somehow WHERE (((Table.Row)=[Forms]![SomeForm]![Textbox1])); works as a search for full string.