Results 1 to 2 of 2
  1. #1
    lagingtoo is offline Novice
    Windows 7 32bit Access 2007
    Join Date
    Jun 2012
    Posts
    1

    Question Put data from one table column into another table

    How do I make a query to insert data from one column to another




    I tried this but it didn't work
    Code:
    INSERT INTO SE_REPORT
    SELECT [SE Lead / NGM].*
    FROM Buyers INNER JOIN SE_REPORT ON SE_REPORT.[Buying Organization ANID]=Buyers.[Buying Organization ANID];

    I am trying to put data in the column SE Lead / NGM from the Buyers table into the SE_Report table with column SE Lead / NGM. Also I want the Supplier Manager Liason column in there too but I am sure it is the same code as the other one.


    Here is the database file:

    datahelp.zip

  2. #2
    recyan's Avatar
    recyan is offline Expert
    Windows 2K Access 2000
    Join Date
    Dec 2011
    Posts
    662
    Did you try making a Make Table Query
    with
    tables SE_REPORT and Buyers
    using
    LEFT JOIN
    ON
    SE_REPORT.[Buying Organization] = Buyers.[Buying Organization]
    &
    then selecting the columns that you want from both the tables.

    Thanks

Please reply to this thread with any new information or opinions.

Similar Threads

  1. alter table to add a column in a linked table
    By markjkubicki in forum Programming
    Replies: 6
    Last Post: 02-09-2012, 08:13 AM
  2. Replies: 6
    Last Post: 01-13-2012, 09:17 AM
  3. Replies: 1
    Last Post: 12-16-2011, 08:16 AM
  4. Replies: 7
    Last Post: 06-10-2011, 05:40 AM
  5. Replies: 1
    Last Post: 03-14-2011, 10:04 AM

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
Other Forums: Microsoft Office Forums