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
https://forums.phpfreaks.com/topic/3761-simple-query-not-working/
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • 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.