Hello,
I use mysql and want to use select function as the following :
select E.*,c.Name,V.Name,P.Name
from Entreprise E,Categorie C,Ville V,Pays P
where (C.CategoryCode=E.SubCategoryCode)and(V.CodeVille=E.CodeVille)and(P.CodePays=V.CodePays)and
(E.ID in(select ID From table1 where ID>15)
)
is there a way to use IN function or INTERSECT ?
Please it's really urgent,
Thank you
I use mysql and want to use select function as the following :
select E.*,c.Name,V.Name,P.Name
from Entreprise E,Categorie C,Ville V,Pays P
where (C.CategoryCode=E.SubCategoryCode)and(V.CodeVille=E.CodeVille)and(P.CodePays=V.CodePays)and
(E.ID in(select ID From table1 where ID>15)
)
is there a way to use IN function or INTERSECT ?
Please it's really urgent,
Thank you