21 messaggi dal 18 marzo 2002
Qualcuno sa dirmi dove è l'errore qua dentro?

SQL = select
(select COUNT(*) from ARGOMENTI where ARGOMENTI.COD_TOP = TOPIC.COD_TOP)
as NARG, COD_TOP, DESCRIZIONE, TOPIC.TOPIC
from TOPIC





Questo è l'errore visualizzato sul browser...

Microsoft VBScript compilation error '800a03ea'

Syntax error

/forum.asp, line 30

SQL = select(select COUNT(*) from ARGOMENTI where ARGOMENTI.COD_TOP = TOPIC.COD_TOP)
------^

Into the void we have to travel...Space is the place.
10 messaggi dal 01 agosto 2002
Se ho capito cosa vuoi fare:
select COUNT(*) as NARG, COD_TOP, DESCRIZIONE, TOPIC.TOPIC
from TOPIC, ARGOMENTI
where ARGOMENTI.COD_TOP = TOPIC.COD_TOP
GROUP BY COD_TOP, DESCRIZIONE, TOPIC.TOPIC

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.