Results 1 to 2 of 2

Thread: Table Titles

  1. #1
    Join Date
    Jan 2003
    Location
    Scotland
    Posts
    1

    Exclamation Table Titles

    Hi,

    I am trying to ceate a report which will return the results from a query with the table name from which the data originally came from, the data has been combined in another query, from three seperate tables.

    Does anyone know how to bring through table names in queries or by any other method.

    Cheers.

  2. #2
    Join Date
    Jan 2003
    Location
    FL
    Posts
    13
    I'm not 100% clear what you want. If you want to see the column names in your
    output including the source table, the syntax should include the fully qualified
    name of the attributes, such as:
    Code:
    
    SELECT [File.Filename], [Name.ed_name] from File, Name where editor = ed_name
    
    (in the ex. above, editor is a foreign key from the File table to the ed_name attribute in the Name table.)

    I usually produce my reports with code, so I generate the titles, column names, and the like in the VBA module(s) used to produce the reports.

    Cheers,
    Gary

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •