sjn78 Posted June 8, 2003 Posted June 8, 2003 I am having some troubles performing this select statement. This is what access produces: SELECT Photos.Keywords FROM Photos WHERE (((Photos.Keywords) Like "*red*")); This is where I am but getting no results. "SELECT Keywords From Photos WHERE Keywords Like *' & keyword.text & '*" Could someone have a look and see where I am going wrong. Thanks Steve Quote
a_jam_sandwich Posted June 8, 2003 Posted June 8, 2003 instead of using the astrix use percentage SELECT Photos.Keywords FROM Photos WHERE (((Photos.Keywords) Like "%red%")); Andy Quote Code today gone tomorrow!
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.