Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Get data from 2 tables
Message
From
08/02/2019 01:38:58
 
 
To
07/02/2019 05:41:22
General information
Forum:
Visual FoxPro
Category:
Databases,Tables, Views, Indexing and SQL syntax
Environment versions
Visual FoxPro:
VFP 9 SP2
OS:
Windows Server 2008 R2
Network:
Windows 2008 Server
Database:
MS SQL Server
Application:
Desktop
Miscellaneous
Thread ID:
01666006
Message ID:
01666088
Views:
52
>
>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
Previous
Next
Reply
Map
View

Click here to load this message in the networking platform