Let's say you want to update a table Person that looks like this:
Name
| Address
| Age
You write the query:
UPDATE Person SET Name='Tom' WHERE Name='Thomas'
.
Is the WHERE clause in this query case-sensitive? That is, would it update rows with names of thomas
and THOMAS
?
(I'm working with MySQL Ver 14.14 Distrib 5.1.73, if it helps.)