2016-06-22 5 views
0

Ich habe 2 SQL-Abfragen mit unterschiedlichen Ergebnismengen. Sie kamen zwar beide aus derselben Tabelle, aber die zweite Abfrage hängt von einer anderen Tabelle ab. Wie kann ich diese 2 Abfragen kombinieren, ohne UNION zu verwenden?MySQL - Ist es möglich, zwei Abfragen ohne Verwendung von UNION zu kombinieren?

Dies ist meine Abfrage.

SELECT tmp.id, tmp.title , tmp.description, asst.smallUrl, b1.paramVal as duration, b2.paramVal as clips, asst.fileUrl as video 
FROM listDb.baseData tmp 
INNER JOIN listDb.tag tag ON tag.baseDataId= tmp.id and tag.tag = 'service app' and tag.status = "active" 
INNER JOIN listDb.baseParam b0 ON b0.baseDataId= tmp.id 
and ((b0.paramName = "role" 
and (b0.paramVal = "public")) 
or ((select count(*) from listDb.baseParam temp 
where temp.baseDataId= tmp.id and paramName = "role")=0)) 
or (b0.paramName = "role" and b0.paramVal = "public" and tmp.owner = 27) 
LEFT JOIN listDb.baseParam b1 ON b1.baseDataId= tmp.id and b1.paramName="duration" and b1.status = "active" 
LEFT JOIN listDb.baseParam b2 ON b2.baseDataId= tmp.id and b2.paramName=" itemCount" and b2.status = "active" 
LEFT JOIN listDb.baseParam b3 ON b3.baseDataId= tmp.id and b3.paramName="previewUrl" and b3.status = "active" 
LEFT JOIN assetDb.baseData asst ON asst.id = b3.paramVal and asst.status = "active" 
WHERE tmp.status = "active" and tmp.application = "template" and tmp.role = "public" 

UNION 

SELECT tmp.id, tmp.title , tmp.description, asst.smallUrl, b1.paramVal as duration, b2.paramVal as clips, asst.fileUrl as video 
FROM listDb.baseData tmp 
INNER JOIN listDb.tag tag ON tag.baseDataId= tmp.id and tag.tag = 'service app' and tag.status = "active" 
INNER JOIN listDb.baseParam b0 ON b0.baseDataId= tmp.id 
and ((b0.paramName = "role" 
and (b0.paramVal = "private" or b0.paramVal = "" and b0.paramVal != "public")) 
or ((select count(*) from listDb.baseParam temp 
where temp.baseDataId= tmp.id and paramName = "role")=0)) 
or (b0.paramName = "role" and b0.paramVal = "public" and tmp.owner = 27) 
LEFT JOIN listDb.baseParam b1 ON b1.baseDataId= tmp.id and b1.paramName="duration" and b1.status = "active" 
LEFT JOIN listDb.baseParam b2 ON b2.baseDataId= tmp.id and b2.paramName="itemCount" and b2.status = "active" 
LEFT JOIN listDb.baseParam b3 ON b3.baseDataId= tmp.id and b3.paramName="previewUrl" and b3.status = "active" 
LEFT JOIN assetDb.baseData asst ON asst.id = b3.paramVal and asst.status = "active" 
INNER JOIN listDb.checkRestricted cr ON cr.baseDataId= tmp.id and cr.status = "active" and cr.owner = 27 
WHERE tmp.status = "active" and tmp.application = "template" and tmp.role = "private" 
+0

gibt es einen Unterschied zwischen Abfragen außer diesem '(b0.paramVal = "private" oder b0.paramVal = "" und b0.paramVal! = "öffentlich") '? –

+0

Die zweite Abfrage erhält die Ergebnisse basierend auf einer anderen Tabelle .. in der Tabelle checkRestricted. INNER JOIN listDb.checkRestricted cr ON cr.baseDataId = tmp.id und cr.status = "active" und cr.owner = 27 –

Antwort

0

Hallo Sie diese Abfrage ohne Vereinigung mit

SELECT tmp.id, tmp.title, tmp.description, asst.smallUrl, b1.paramVal AS duration, b2.paramVal AS clips, asst.fileUrl AS video 
FROM listDb.baseData tmp INNER JOIN listDb.tag tag ON tag.baseDataId= tmp.id AND tag.tag = 'service app' AND tag.status = "active" 
INNER JOIN listDb.baseParam b0 ON b0.baseDataId= tmp.id AND ((b0.paramName = "role" AND ((b0.paramVal = "public") OR (b0.paramVal = "private" OR b0.paramVal = ""))) OR ((
SELECT COUNT(*) FROM listDb.baseParam temp WHERE temp.baseDataId= tmp.id AND paramName = "role")=0)) OR (b0.paramName = "role" AND b0.paramVal = "public" AND tmp.owner = 27) 
LEFT JOIN listDb.baseParam b1 ON b1.baseDataId= tmp.id AND b1.paramName="duration" AND b1.status = "active" 
LEFT JOIN listDb.baseParam b2 ON b2.baseDataId= tmp.id AND b2.paramName=" itemCount" AND b2.status = "active" 
LEFT JOIN listDb.baseParam b3 ON b3.baseDataId= tmp.id AND b3.paramName="previewUrl" AND b3.status = "active" 
LEFT JOIN assetDb.baseData asst ON asst.id = b3.paramVal AND asst.status = "active" 
WHERE tmp.status = "active" AND tmp.application = "template" AND (tmp.role = "public" OR tmp.role = "private") group by tmp.id 
+0

Hallo. Ich habe versucht, Sie abzufragen. aber das liefert nicht das richtige Ergebnis. –

0

der Unterschied zwischen Abfragen So versuchen kann, ist:

  • erste kehrt b0.paramVal = "public" public "Daten"
  • zweite - b0.paramVal = "private" or b0.paramVal = "" privat oder gleich privat mit Überprüfung der Einschränkungen (checkRestricted Tabelle)

und logisch ist:

(b0.paramVal = "public") 
OR (b0.paramVal in ("private", "") AND EXISTS(...listDb.checkRestricted) 

volle Quelle:

SELECT 
    tmp.id, tmp.title , tmp.description, asst.smallUrl, 
    b1.paramVal as duration, b2.paramVal as clips, asst.fileUrl as video 
FROM listDb.baseData tmp 
INNER JOIN listDb.tag tag 
    ON tag.baseDataId= tmp.id and tag.tag = 'service app' and tag.status = "active" 
INNER JOIN listDb.baseParam b0 
    ON b0.baseDataId= tmp.id 
    AND 
    (
    b0.paramName = "role" 
    OR 
    (
     NOT EXISTS(select 1 from listDb.baseParam temp 
     where temp.baseDataId= tmp.id and paramName = "role")     ---<<< does this actually mean LEFT JOIN to listDb.baseParam b0 ??? 
    ) 
) 
    or (b0.paramName = "role" and b0.paramVal = "public" and tmp.owner = 27) ---<<< this is very strange in join 
LEFT JOIN listDb.baseParam b1 
    ON b1.baseDataId= tmp.id and b1.paramName="duration" and b1.status = "active" 
LEFT JOIN listDb.baseParam b2 
    ON b2.baseDataId= tmp.id and b2.paramName=" itemCount" and b2.status = "active" 
LEFT JOIN listDb.baseParam b3 
    ON b3.baseDataId= tmp.id and b3.paramName="previewUrl" and b3.status = "active" 
LEFT JOIN assetDb.baseData asst 
    ON asst.id = b3.paramVal and asst.status = "active" 
WHERE tmp.status = "active" 
    and tmp.application = "template" 
    /* changes to filter (some alterations might be performed if there must be LEFT JOIN to baseparam0 */ 
    and tmp.role in ("public", "private") 
    and (b0.paramVal = "public" 
    OR b0.paramVal in ("private", "") 
     AND EXISTS(SELECT 1 FROM listDb.checkRestricted cr 
     WHERE cr.baseDataId= tmp.id and cr.status = "active" and cr.owner = 27) 
) 
+0

basierend auf der Abfrage, die Sie gaben, kann ich nicht die richtigen Ergebnisse erhalten .. es gibt mir einen Syntaxfehler. –

+0

Ich würde vorschlagen, logische Fehler zuerst zu beheben. Wie seltsame Bedingungen in Joins, die absurde Ergebnisse produzieren könnten. –

Verwandte Themen