Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Is there a way to simplify this selection
Message
 
 
To
15/12/2005 13:18:48
General information
Forum:
Visual FoxPro
Category:
Databases,Tables, Views, Indexing and SQL syntax
Environment versions
Visual FoxPro:
VFP 9
OS:
Windows XP SP1
Miscellaneous
Thread ID:
01078376
Message ID:
01078391
Views:
15
If table doesn't have memo fields
SELECT DISTINCT mt.* FROM mytable mt ;
	JOIN TempAcctList ON acct = acct1 ;
		OR acct = acct2 OR acct = acct3
If table has PK field
SELECT * FROM mytable ;
WHERE PK IN ( ;
   SELECT DISTINCT mt.pk FROM mytable mt ;
	JOIN TempAcctList ON acct = acct1 ;
		OR acct = acct2 OR acct = acct3)
>I have an old DBF that I'm accessing that has account numbers stored in 9 fields, "ACCT1", "ACCT2", etc.
>
>I need to select all records where any of these accounts appear in a list of accounts which is in a cursor ("TempAcctList") with one field.
>
>Is there any simpler way to select these records than the following:
>
SELECT * From OldTable ;
>where acct1 in (select * from TempAcctList) ;
>or acct2 in (select * from TempAcctList) ;
>or acct3 in (select * from TempAcctList) ;
>... etc, through all nine accounts
>I can certainly do this, but am just wondering if there's any simpler construction, or more efficient way to do this.
>
>Thanks in advance
--sb--
Previous
Reply
Map
View

Click here to load this message in the networking platform