Consulting

Results 1 to 3 of 3

Thread: Update query in ms access

  1. #1

    Update query in ms access

    UPDATE ExportToTable LEFT JOIN Integration_Interface ON ExportToTable.ID = Integration_Interface.Integration_Interface_ID SET ExportToTable.I_I_name = [Integration_Interface].[Integration_Interface_Name];

    When i hit run to run this query. nothing happens. is something wrong with my query?

    attached is the relationship between the two tables

  2. #2
    VBAX Master XLGibbs's Avatar
    Joined
    Jan 2006
    Location
    state of confusion, but vacation in denial
    Posts
    1,315
    Location
    When you say "nothing happens"...there is no error message...nothing at all?

    What happens when you run this:

    Select ExportToTable.ID, Intergation_Interface.Integration_Interface_ID FROM ExportToTable 
     LEFT JOIN Integration_Interface ON ExportToTable.ID =  Integration_Interface.Integration_Interface_ID
    Do you get results?
    If you have posted the same question at multiple forums, please read this IMPORTANT INFO.

    Please use the thread tools to mark your thread Solved


    Please review the Knowledge Base
    for samples and solutions , or to submit your own!




  3. #3
    Thank you for this. I got it working on my computer now.

Posting Permissions

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