Test table in the database looks like
id - int
title - varchar
+---+-------+
| id| title |
+---+-------+
|1 | name |
+---+-------+
I run the query
SELECT * FROM `Test` WHERE id="1abc"
Then it gives the output as
+---+-------+
|1 | name |
+---+-------+
idis integer, so,"1abc"will be convert to11 = '1', ' 1', or '1a'