I have a mySQL database called listDB
that contain several tables with column name Product
etc. I want to SELECT
from all tables where Product Like %XYZ%, and display the search result in a separate table.
I tried this:
SELECT * FROM * WHERE Product LIKE %XYZ%
But it is not working. What is the right query for this purpose?