Plateforme Level Extreme
Abonnement
Profil corporatif
Produits & Services
Support
Légal
English
Get data from 2 tables
Message
De
08/02/2019 04:28:22
 
 
Information générale
Forum:
Visual FoxPro
Catégorie:
Base de données, Tables, Vues, Index et syntaxe SQL
Versions des environnements
Visual FoxPro:
VFP 9 SP2
OS:
Windows Server 2008 R2
Network:
Windows 2008 Server
Database:
MS SQL Server
Application:
Desktop
Divers
Thread ID:
01666006
Message ID:
01666090
Vues:
43
>>>
>>>SELECT Date, DatePart(hour,Date) as Hr, reading
>>>FROM TABLE1 A
>>>WHERE Date IN 
>>>
>>>(SELECT Min(Date) as date
>>> FROM TABLE1 B
>>> WHERE DatePart(hour,A.Date)= DatePart(hour,B.Date) 
>>> 
>>>UNION
>>>
>>> SELECT Min(Date)as date
>>> FROM TABLE2 C
>>> WHERE DatePart(hour,A.Date)= DatePart(hour,C.Date)) 
>>>
>>
>>
>>
>>Thanks sir your codes work fine in sqlserver new query window
>>But I want to create a view from these codes instead of using codes every time.
>>I shall pickup required data from view.
>>
>>To do this I put your codes under view like shown in image but it is displaying an error messages
>>
>>I think there will be use JOIN clause but I am unable to do this.
>>Please help me to create a view with your codes
>>
>>Thanks
>
>Try the following Statement, which error do you receive?
>
>CREATE VIEW Test
>AS SELECT Date, DatePart(hour,Date) as Hr, reading
>FROM TABLE1 A
>WHERE Date IN
>(SELECT Min(Date) as date
>FROM TABLE1 B
>WHERE DatePart(hour,A.Date) = DatePart(hour,B.Date)
>UNION
>SELECT Min(Date) as date
>FROM TABLE2 C
>WHERE DatePart(hour,A.Date) = DatePart(hour,C.Date))


Sir view created but when I try to click on design then it display error message shown in attachment.
Précédent
Suivant
Répondre
Fil
Voir

Click here to load this message in the networking platform