Tak, możesz je bardzo dobrze ujednolicić za pomocą wyszukiwarki, takiej jak Apache Lucene i Solr.
http://lucene.apache.org/solr/
Jeśli potrzebujesz to zrobić tylko w MySQL, możesz to zrobić za pomocą UNION. Prawdopodobnie zechcesz pominąć wszelkie wyniki, które nie są istotne dla zera.
Musisz zdecydować, jak chcesz wpłynąć na trafność w zależności od dopasowania tabeli.
Załóżmy na przykład, że chcesz, aby artykuły były najważniejsze, zdarzenia były średnio ważne, a strony najmniej ważne. Możesz użyć mnożników w ten sposób:
set @articles_multiplier=3;
set @events_multiplier=2;
set @pages_multiplier=1;
Oto działający przykład, który możesz wypróbować, demonstrujący niektóre z tych technik:
Utwórz przykładowe dane:
create database d;
use d;
create table articles (id int primary key, content text) ENGINE = MYISAM;
create table events (id int primary key, content text) ENGINE = MYISAM;
create table pages (id int primary key, content text) ENGINE = MYISAM;
insert into articles values
(1, "Lorem ipsum dolor sit amet"),
(2, "consectetur adipisicing elit"),
(3, "sed do eiusmod tempor incididunt");
insert into events values
(1, "Ut enim ad minim veniam"),
(2, "quis nostrud exercitation ullamco"),
(3, "laboris nisi ut aliquip");
insert into pages values
(1, "Duis aute irure dolor in reprehenderit"),
(2, "in voluptate velit esse cillum"),
(3, "dolore eu fugiat nulla pariatur.");
Umożliwić wyszukiwanie:
ALTER TABLE articles ADD FULLTEXT(content);
ALTER TABLE events ADD FULLTEXT(content);
ALTER TABLE pages ADD FULLTEXT(content);
Użyj UNION, aby przeszukać wszystkie te tabele:
set @target='dolor';
SELECT * from (
SELECT
'articles' as 'table_name', id,
@articles_multiplier * (MATCH(content) AGAINST (@target)) as relevance
from articles
UNION
SELECT
'events' as 'table_name',
id,
@events_multiplier * (MATCH(content) AGAINST (@target)) as relevance
from events
UNION
SELECT
'pages' as 'table_name',
id,
@pages_multiplier * (MATCH(content) AGAINST (@target)) as relevance
from pages
)
as sitewide WHERE relevance > 0;
Wynik:
+------------+----+------------------+
| table_name | id | relevance |
+------------+----+------------------+
| articles | 1 | 1.98799377679825 |
| pages | 3 | 0.65545331108093 |
+------------+----+------------------+