異なる結果セットを持つ2つのSQLクエリがあります。彼らは両方とも同じテーブルから来ましたが、2番目のクエリは別のテーブルに依存します。どのようにUNIONを使用せずにこれらの2つのクエリを組み合わせることができますか?MySQL - UNIONを使わずに2つのクエリを組み合わせることは可能ですか?
これは私の質問です。
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"
は "この'(b0.paramVal = "プライベート" またはb0.paramVal =除くクエリの間に違い" がありますとb0.paramVal!= "public") '? –
2番目のクエリは、checkRestrictedテーブルの別のテーブルに基づいて結果を取得します.. INNER JOIN listDb.checkRestricted cr ON cr.baseDataId = tmp.idおよびcr.status = "active"およびcr.owner = 27 –