Hallo,
Hab folgendes Problem. Ich habe eine Suche geschrieben und jetzt werden ERgebnisse doppelt bzw. bis zu 5 mal ausgegeben trotz DISTINCT! Warum?
Ich hoffe mir kann jemand helfen
MfG
Sebastian
Hab folgendes Problem. Ich habe eine Suche geschrieben und jetzt werden ERgebnisse doppelt bzw. bis zu 5 mal ausgegeben trotz DISTINCT! Warum?
PHP:
<cfquery datasource="#application.odbc#" name="anzeigen" dbtype="#application.dbtype#">
SELECT DISTINCT *
FROM tblpbobj o INNER JOIN tbl_obj_zo_archiv a ON a.ObjID = o.strObjID
WHERE o.mdt_id = '#session.mandant.mdt#'
AND <cfif NOT isDefined("request.type")>(o.strClsIDFK = 'gesuch' OR o.strClsIDFK = 'angebot')<cfelse>
<cfif request.type IS "gesuch">o.strClsIDFK = 'gesuch'</cfif>
<cfif request.type IS "angebot">o.strClsIDFK = 'angebot'</cfif>
</cfif>
AND a.arch_uuid = "#request.arch_uuid#"
</cfquery>
Ich hoffe mir kann jemand helfen
MfG
Sebastian