Jump to content
Fórum Script Brasil
  • 0

Cláusula Union


Cyllwah

Question

Boa Tarde, Companheiros!

Estou com um devido problema.

Na tentativa de obter resultados de duas tabelas unindo os mesmos ao um único resultado não estou obtendo sucesso.

Estou fazendo este recordset em 4 camadas...

Este recordset(UNION) está sendo chamado por uma dll, o que gera um erro de sintaxe(Não reconhece a cláusula UNION) -2147217900 - Incorrect syntax near the keyword 'Union'.

Existe de alguma forma corrigir o erro, ou então contorná-lo?

Desde já agradeço sua atenção!

Abraços!

Link to comment
Share on other sites

2 answers to this question

Recommended Posts

  • 0

Então lá vai...

...Espero que entenda.

strSQL = "select [name],number,software as Cursos from tabela1 t1 inner join tabela2 t2"

strSQL = strSQL & " on t1.primary_ID = t2.primary_ID inner join tabela3 t3"

strSQL = strSQL & " on t2.primary_ID = t3.primary_ID inner join tabela4 t4"

strSQL = strSQL & " on t3.primary_ID = t4.primary_ID where t1.primary_ID =" & primary_ID

strSQL = strSQL & " Union"

strSQL = strSQL & " select [name],number,tecnologia from tabela1 t1 inner join tabela2 t2"

strSQL = strSQL & " on t1.primary_ID = t2.primary_ID inner join tabela3 t3"

strSQL = strSQL & " on t2.primary_ID = t3.primary_ID inner join tabela4 t4"

strSQL = strSQL & " on t3.primary_ID = t4.primary_ID where t1.primary_ID =" & primary_ID

Desde já agradeço sua atenção!!!

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
      651.8k
×
×
  • Create New...