Jump to content
Fórum Script Brasil
  • 0

Consulta com subconsultas- roda no SQL mas não no ASP


ViaPocket

Question

A consulta abaixo roda no SQL perfeitamente, mas quando coloco num do recordset roda "metade" da consulta.

SELECT COMP_CONHECIMENTOS.CompConhecimentosCodConhecimento, COMP_CONHECIMENTOS.CompConhecimentosCodComp, CONHECIMENTOS.ConheceTitulo

FROM COMP_CONHECIMENTOS INNER JOIN

CONHECIMENTOS ON COMP_CONHECIMENTOS.CompConhecimentosCodConhecimento = CONHECIMENTOS.ConheceCod

WHERE COMP_CONHECIMENTOS.CompConhecimentosCodComp <> 4

***************os dados referente ao trecho abaixo não são exibidos quando rodo o recordset******************

(SELECT CONHECIMENTOS.ConheceTitulo

FROM CONHECIMENTOS LEFT OUTER JOIN

COMP_CONHECIMENTOS ON CONHECIMENTOS.ConheceCod = COMP_CONHECIMENTOS.CompConhecimentosCodConhecimento

WHERE CONHECIMENTOS.ConheceCod IN

(SELECT CompConhecimentosCodComp

FROM COMP_CONHECIMENTOS

WHERE (CompConhecimentosCodComp <> 4)))

O acontece??

valeu!

Link to comment
Share on other sites

1 answer to this question

Recommended Posts

  • 0

Quase resolvido...não estou conseguindo "encaixar" o ORDER BY.

SELECT DISTINCT CONHECIMENTOS.ConheceTitulo AS Titulo

FROM CONHECIMENTOS LEFT OUTER JOIN

COMP_CONHECIMENTOS ON CONHECIMENTOS.ConheceCod = COMP_CONHECIMENTOS.CompConhecimentosCodConhecimento

WHERE CompConhecimentosCodComp <> 4 UNION

(SELECT DISTINCT CONHECIMENTOS.ConheceTitulo AS Titulo

FROM CONHECIMENTOS LEFT OUTER JOIN

COMP_CONHECIMENTOS ON CONHECIMENTOS.ConheceCod = COMP_CONHECIMENTOS.CompConhecimentosCodConhecimento

WHERE CONHECIMENTOS.ConheceCod IN

(SELECT CompConhecimentosCodComp

FROM COMP_CONHECIMENTOS

WHERE (CompConhecimentosCodComp <> 4 )))ORDER BY Titulo DESC

O ORDER BY só funciona para um dos grupos da união...e no outro grupo não está aceitando...help!!

Edited by ViaPocket
Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.



  • Forum Statistics

    • Total Topics
      152.2k
    • Total Posts
      652k
×
×
  • Create New...