Jump to content

Simple Query not Working


barkster

Recommended Posts

I'm trying to do this query below using a the LIKE command but is not working for me which I assume if the word Smith shows up in the persons last name it will give me a result but it isn't. Also I'm using Dreamweaver for this, both queries work when I run from Navicat but the first does not in dreamweaver?

SELECT RecFirstName, RecLastName
FROM RecUsers
WHERE RecLastName LIKE '%Smith%'

Results = 0

But if I do this it works??
SELECT RecFirstName, RecLastName
FROM RecUsers
WHERE RecLastName LIKE 'Smith%'

Results 2 rows
Kim Smith
John Smith

Any ideas on why this isn't working?
Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.