Plateforme Level Extreme
Abonnement
Profil corporatif
Produits & Services
Support
Légal
English
Subquery syntax
Message
 
 
Information générale
Forum:
Microsoft SQL Server
Catégorie:
Syntaxe SQL
Titre:
Versions des environnements
SQL Server:
SQL Server 2014
Application:
Web
Divers
Thread ID:
01615658
Message ID:
01615666
Vues:
28
>>Hi,
>>
>>I need to create a SQL Select with a subquery (I think) but I am lost on how to "pass" the value to the subquery.
>>
>>Here is what I am trying to do:
>>
>>Table1 has the following fields
>>id_field c(15)
>>incl_in_sel bit
>>Table2 has the following fields
>>id_field c(15)
>>field2 c(20)
>>date_fld t (type DateTime in SQL Server)
>>
>>Select records from Table1 that have incl_in_sel = 1 (checked) and Table2.date_fld not equal to today and field2 = 'ABC'
>>
>>For example, he is my attempt:
>>
>>
>>select * from Table1 where incl_in_sel = 1 and Table1.id_field = (select Table2.id_field from Table2 where date_fld <> GetDate() and field2 = 'ABC')
>>
>>
>>But even without trying I don't think the above will work. What am I missing?
>
>Why you can not use JOIN, e.g.
>
>select T1.*, T2.*
>from Table1 T1  JOIN Table2 T2 -- can be LEFT JOIN
>ON T1.id_field = T2.id_field and CAST(T2.date_fld  as DATE)<> CAST(CURRENT_TIMESTAMP AS DATE) and T2.field2 = 'ABC'
>WHERE T1.incl_in_sel = 1
I did try to use Join but I thought that sub-query would be much faster. As you did in your other message.
"The creative process is nothing but a series of crises." Isaac Bashevis Singer
"My experience is that as soon as people are old enough to know better, they don't know anything at all." Oscar Wilde
"If a nation values anything more than freedom, it will lose its freedom; and the irony of it is that if it is comfort or money that it values more, it will lose that too." W.Somerset Maugham
Précédent
Répondre
Fil
Voir

Click here to load this message in the networking platform