iam new for sql, and I would like to know how to find the letter or character at the end of a value in a column called Name ? For example, if I found something, I would write select * from 'table' where 'Name' like '%es%' , but it will find me all the rows containing es
Say - lesl, pespe, mess ... but how to write select that will only select values ββwith 'es' At the end of the word? ... using regex , I will use es\Z ..... thanks in advance!
DRastislav
source share