Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations bkrike on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  • Users: verstapp
  • Content: Threads
  • Order by date
  1. verstapp

    Problem with join

    2 tables: assets: ... [asset id] ... pvtorecycle: fred Both fields are text. Prior to updating certain records in assets i first try to find them using values previously typed into pvtorecycle.fred. SELECT * FROM assets WHERE pvtorecycle.fred = assets.[asset id]; However, when I run the...
  2. verstapp

    Query output

    I have a query which takes a user-supplied parameter and produces an output like this Date Count parameter x === ============ SELECT [asset tests].[test date], count(assets.[asset key]) FROM [asset tests] LEFT JOIN assets ON ([asset tests].[asset id] = assets.[asset key]) and (assets.[test...
  3. verstapp

    outer join problem

    The old 'how many detail lines does each master record have', with a twist. I have 2 tables, A: key, integer1, ...; and B: key, testdate, ... Basically, A is master records, B is detail lines, related by A.key = B.key. What I am looking for is a query generating: testdate, counta where testdate...

Part and Inventory Search

Back
Top