I'm try to get data from SQL using LIKE
successful to get data but the result more than I need
Here is my some data
apple1
apple2
apple3
applejuice1
applej1
applej2
My query:
select * from apple where name like '%applej%'
Currently I got:
applejuice1
applej1
applej2
My Expected output:
applej1
applej2