I have two tables named User, Holiday.
Now my objective is to search user.
I need to search a user by the name from user table or city from the holiday table.
If I search by name, then Name from user table and his city from holiday table should be display. And if I search by city then city from holiday table and his Name from user table should be displayed.
User table::

Holiday Table

I have tried the following::
SELECT * FROM `holiday`,`user`
WHERE holiday.UserID=user.UserID
and user.Name like '%Bre%'
or holiday.City like '%Bre%'
But 🙁
I would like you to use LEFT JOIN,