i got 10 tables and got to make a join query to display data in the search page..
tried joining 3 tables..bt i get the same records..many times..
select c.project_title,m.title,p.project_title,pr.project_title
from consultancy_projects c,manuals m,phd_projects p,projects_supervised pr,login
where
c.user_login=m.user_login
and m.user_login=p.user_login
and p.user_login=pr.user_login
and login.user_login='101'
wanted to ask..is it better to make a single join query ..or to make diff .sql statements..to display data...from diff..tables in a single
jsp page..
thanks..