Let us take an example:
We have table employees with following fields:
id int primary key,
name varchar(50),
city varchar(50)
We have following records in the table:
(1, isha, amr);
(2, Hamlet’s, ghy);
(3, éhjj, amr);
2nd and 3rd records have special characters in their Read more…