Hi Experts,
I have an union query getting data from two separate tables. I'm using this union query to search for records using simple text search.
Query looks like this:
SELECT table1.Name, table1.Surname, table1.DOB, table1.id, table1.diag
FROM table1;
UNION
SELECT table2.Name...