4 messaggi dal 01 marzo 2001
www.lamedia.it
ho un problema con una query e nn riesco proprio a trovare la soluzione..
devo ricavare tutti i prodotti di una determinata categoria e tutti i
prodotti delle sue sottocategorie.

in access ho due tabelle una
PRODOTTI (Id, Descr, Idcat)
CATEGORIE(Id,Descr,Id_Parent)

-------------------------------------------------------------------
IdCat = Request.QueryString ("idCat")

sql = "SELECT P.*, C.descr as DescrCat "&_
"FROM Prodotti P, Categorie C, categorie S "&_
"WHERE C.id = P.idCat "&_
" and S.id = C.id_parent "&_
" and P.id <> -1"
if fndcod <> "" then sql = sql & " and P.Codice like '"&fndcod&"%' "
if fndprod <> "" then sql = sql & " and P.descr like '"&fndprod&"%' " '

if IdCat <> "" then
sql = sql & " and C.id = "&IdCat
sql = sql & " and S.id_parent = "&IdCat
end if

sql = sql & " ORDER BY P.idcat"
rs.Open sql, conn, 1
-----------------------------------------

Grazie in anticipo

Tommaso


Tommaso Landi

Tommaso Landi

Torna al forum | Feed RSS

ASPItalia.com non è responsabile per il contenuto dei messaggi presenti su questo servizio, non avendo nessun controllo sui messaggi postati nei propri forum, che rappresentano l'espressione del pensiero degli autori.