|
-
Jul 4th, 2000, 09:48 AM
#1
Thread Starter
New Member
Can some one please help. I am a bit of a beginer when it comes to data reports in visual basic. I have data reports that are based on queries in an access database, some of these queries are queries based on queries. Is there any way that i can base a query in visual basic on another query in visual basic? I am using commands and with SQL statements
-
Jul 4th, 2000, 12:34 PM
#2
Guru
you should be able to query on a query:
select * from [my query name here] where [condition]....
-
Jul 4th, 2000, 01:00 PM
#3
Lively Member
Instead of using queries: Every query is a SELECT command, right? So why don't you just use
SELECT * FROM (SELECT * FROM (SELECT ...) WHERE ...) WHERE ...
Roger
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|