Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
SQL - Union
Message
From
26/03/2003 09:05:52
 
 
To
All
General information
Forum:
Visual FoxPro
Category:
Coding, syntax & commands
Title:
SQL - Union
Miscellaneous
Thread ID:
00770184
Message ID:
00770184
Views:
45
I have the following SQL statement as the rowsource of a dropdown box that works fine:

SELECT '***All Sales Reps*** ' AS Name, '*****'AS
salesrepid FROM salesreps UNION SELECT ALLTRIM(lastname)+', '+ALLTRIM
(firstname) AS Name,salesrepid FROM salesreps INTO CURSOR curSalesRep ORDER BY name

I would like to add a WHERE statement to the second Select statement as follows:

SELECT '***All Sales Reps*** ' AS Name, '*****'AS salesrepid FROM salesreps UNION SELECT ALLTRIM(lastname)+', '+ALLTRIM(firstname) AS Name,salesrepid FROM salesreps INTO CURSOR curSalesRep WHERE salesreps.active = 1 ORDER BY name

However, when I do this I get a syntax error. What am I doing wrong? What is the correct syntax for this statement?

Thanks in advance,
Russell
Next
Reply
Map
View

Click here to load this message in the networking platform