hi I want to split mysql search result. I've added a sample image for the table. I want to select values word by word from adi field.
mysql:
select * from liste like %emlak%
Result:
emlak1 emlak2 emlak3
I've used substring ets.. but it didn't work
SELECT
*,
sum((length(adi)-length(replace(adi,' ',''))+1)) as bosluk
FROM liste2
where adi like '%emlak%'