F
framasch
Ciao a tutti, ho bisogno che mi indichiate come costruire una subquery
in un costrutto di qeusto tipo:
qr += "<select>
qr += "<columns><name>PIPPO</name><name>PAPERINO</name></columns>";
qr += "<tables><name>DISNEY</name><name>WALT</name></tables>";
qr += "<where>";
qr += "<condition><connector></connector><name>DISNEY.PIPPO</name>
qr += "<oper>=</oper><name>WALT.PERSONAGGIO</name></condition>";
qr+= "<condition><connector>AND</connector><name>WALT.PLUTO</name>
qr+= "<oper>=</oper><value>" + variable + "</value></condition>";
qr += "</where>";
qr += "</select>";
Immaginando che ci fosse un altro and in coda alla select che è
costituito da
"and DISNEY.CAMPO = (SELECT * FROM TABELLA WHERE TABELLA.CAMPO = 1);
Come deve essere costruita con i tag xml così come è la select sopra?
Grazie anticipatamente
macistina
in un costrutto di qeusto tipo:
qr += "<select>
qr += "<columns><name>PIPPO</name><name>PAPERINO</name></columns>";
qr += "<tables><name>DISNEY</name><name>WALT</name></tables>";
qr += "<where>";
qr += "<condition><connector></connector><name>DISNEY.PIPPO</name>
qr += "<oper>=</oper><name>WALT.PERSONAGGIO</name></condition>";
qr+= "<condition><connector>AND</connector><name>WALT.PLUTO</name>
qr+= "<oper>=</oper><value>" + variable + "</value></condition>";
qr += "</where>";
qr += "</select>";
Immaginando che ci fosse un altro and in coda alla select che è
costituito da
"and DISNEY.CAMPO = (SELECT * FROM TABELLA WHERE TABELLA.CAMPO = 1);
Come deve essere costruita con i tag xml così come è la select sopra?
Grazie anticipatamente
macistina