Your search would be like this and using GROUP_CONCAT, if you are searching for one prosin.
Like the comments already said it is preferred to used normalized tables without comma delimited data see Is storing a delimited list in a database column really that bad?
The Name for that you are search you don't need in the query, if you don't want to, because you send it in your form via GET or POST, but you can add it in your search query as constant
Last take also a look at How can I prevent SQL injection in PHP? you want to use prepared statements with parameters when you handle dta that are entered
CREATE TABLE searbar (
`title` VARCHAR(10),
`Name` VARCHAR(10)
);
INSERT INTO searbar
(`title`, `Name`)
VALUES
('IOT', 'Sara,Husna'),
('management', 'Mia,Sara');
SELECT GROUP_CONCAT(title) FROM searbar WHERE `Name` LIKE '%Sara%'
| GROUP_CONCAT(title) |
| :------------------ |
| IOT,management |
db<>fiddle here