Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
SQLExec to handle two SQLs
Message
From
20/03/2003 05:06:17
Liam O'Hagan
O'Hagan Programming Ltd
Ireland
 
 
To
19/03/2003 23:50:37
General information
Forum:
Visual FoxPro
Category:
Client/server
Miscellaneous
Thread ID:
00767949
Message ID:
00767970
Views:
18
Hi Michael,

Perhaps I'm reading it wrong but it seems to me that you'll only ever have one record returned if you're looking for the MIN() of a primary key.
lcSQL = "Select News.Numero, News.CustomerName From News Where Numero In " + ;
             "(Select Min(News.Numero) From News Where Priority)"

lnQueryResult = SQLExec(lnConnectionHandle, lcSQL, "curResults")
Regards,

Liam



>I need to convert two VFP SQLs into SQLExec(). What I have presently in VFP is one SQL which collects all primary keys from a table. Then, from that cursor, I extract all the necessary fields from the table by the use of a inner join. So, I have something like:
>
>
>SELECT MIN(News.Numero) AS Numero FROM News WHERE Priority INTO CURSOR Temp
>
>SELECT News.Numero,News.CustomerName FROM Temp;
> INNER JOIN News ON Temp.Numero=News.Numero INTO CURSOR Temp
>
>
>Basically, how can I achieve the same from a SQL Server table by the use of SQLExec()?
Liam O'Hagan
MCP VFP Desktop Apps
Previous
Next
Reply
Map
View

Click here to load this message in the networking platform