Linking Tables

my clients are in table1, all my repairs are in table2......If a client has a repair, how do i link the tables so that when i do

Select Repairs From Table2, i want it to pull the repairs along with the client name, but i really am stomped on how to do it any help




Answer this question

Linking Tables

  • David C Baldauff

    Can create a view for the same. Basically an INNER JOIN on Clients and Repair table should be good.
  • avnerz

    thanks that inner join worked perfectly!!

  • Linking Tables