Forum Moderators: open
Has anyone else ever seen this behavior?
Any suggestions?
Thanks
Mel
Post the query here so we can see it, and feel free to change the table name.
Look for quoting errors maybe? The phpAdmin is probably correcting them for you. You aren't testing it directly unless you've installed mysql locally and run it from the command line (which you should do.) For example,
select id from customers where lname='O'Malley'; #oops
select id from customers where lname='O''Malley'; #works
select id from customers where lname="O'Malley"; #ditto