table1
 ID
 SUBJECT
 CONTENT

table2
 ID
 SUBJECT
 CONTENT

table3
 ID
 SUBJECT
 CONTENT

... 5 more

I want to search SUBJECT on all the tables

How can I do this?

link|improve this question

50% accept rate
Are the tables all the same structure? If so, why aren't they normalized into one table? If not, how do you plan on combining the results? Are you doing a FULL-TEXT search or just a regular search? – mellamokb Oct 6 '11 at 18:25
All the same structure as Tables But Contents of the different. – Awersione Oct 6 '11 at 18:29
feedback

4 Answers

CREATE VIEW multitable AS
SELECT * FROM table1
UNION SELECT * from table2
UNION SELECT * from table3;

SELECT subject FROM multitable ...
link|improve this answer
its working but my db total size 1.5 GB and this method wait to much. do you have any idea ? – Awersione Oct 6 '11 at 19:24
How does the performance compare to the other solutions suggested here? What does EXPLAIN SELECT subject FROM multitable... say? What does running EXPLAIN on the other solutions say? Note that you can also profile the queries with SET profiling = 1, SELECT ..., SHOW PROFILES. – unutbu Oct 6 '11 at 19:42
feedback
select * from table1 where subject like '%match%' union
select * from table2 where subject like '%match%' union
select * from table3 where subject like '%match%' union
select * from table4 where subject like '%match%' union
select * from table5 where subject like '%match%' union
select * from table6 where subject like '%match%' union
select * from table7 where subject like '%match%' union
select * from table8 where subject like '%match%'
link|improve this answer
feedback

Because all the tables have the same syntax, you can use the UNION operator.

SELECT * FROM Table1
UNION Table2
UNION Table3
UNION Table4
UNION Table5
UNION Table6
UNION Table7
UNION Table8
WHERE SUBJECT="Subject"

For the sake of simplicity, 8 tables isn't too much to write out. If you had more, I'd recommend a dynamic query.

link|improve this answer
feedback

Searching is hard. May I suggest a ready-made solution like Solr/Lucene?

link|improve this answer
2  
"Google for it" is not an answer that meets the quality bar here. At least add links to the project home pages. – µBio Oct 6 '11 at 18:33
@µBio Added links. – NullUserException Oct 6 '11 at 23:44
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.