Select & Where Clause in RS2005

  • Is it possible in RS 2005 to have linked fields on a report. I have one dataset that contains one section on information, I then have a seperate dataset which contains some different information.

    site_ref is the common link between the two datasets. I will write the sort of syntax I would expect to see in plain english and then perhaps someone could point me in a direction of the correct syntax to use if it is possible to do

    The following Assumptions made, two datasets containing a link on site_ref

    result textbox = show dataset2.budgetnetrent where dataset1.site_ref = dataset2.site_ref

    Does that make sense?

    Regards

  • select table1.*,table2.* from table1 inner join table2 on table1.site_ref=table2.site_ref

    MVDBA

Viewing 2 posts - 1 through 1 (of 1 total)

You must be logged in to reply to this topic. Login to reply