iam new to sql and i would like to know how can I find the letter or symbol at the end of value in column called Name? E.g if i would find something i will
Name
You're currently matching on: ..where 'Name' like '%es%'.
..where 'Name' like '%es%'
Which equates to anything, then 'es' then anything else.
anything, then 'es' then anything else
Removing the last % changes the where to anything then 'es'.
%
anything then 'es'
in short.. you need ..where 'Name' like '%es'
..where 'Name' like '%es'