|
-
Jul 28th, 2005, 12:05 AM
#1
Thread Starter
Lively Member
How To Make Multiple queries On One Data Report
Hi there, I Want To Design A Data report, So I Added A data environment & Data report , Created A Connection & Command1, in Command1 I Use SQL Query, So I need To Get Multiple Values From Different Tables,So:
i write An SQL Query:
SELECT * FROM students WHERE (SName = ?)
So I Can bound the result to textboxes on the report, but i need also to bound other results from different queries,
i tried to make another command, but the problem is that the data report is taking on command a once ,
wish to find an answer,
-
Jul 28th, 2005, 01:21 AM
#2
Hyperactive Member
Re: How To Make Multiple queries On One Data Report
A query can select multiple values from different related or unrelated tables. e.g.
Select student.*,grades.* from students inner join grades on students.IDnum= grades.StudentID
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
|