select query + insert query + MS ACCESS

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • maravinds
    New Member
    • May 2006
    • 1

    select query + insert query + MS ACCESS

    Hallo everyone,

    I have two tables in the database table1(col1,col 3,col2) and table2(col1, col2). First of all i will have to select col2 from database and for each and every value of col2 i need o make an insert query in the table1(..,..,co l2).

    It will be helpful for me if anyone call solve this problem for me.

    aravind.s
  • cweiss
    New Member
    • Apr 2006
    • 36

    #2
    This should do it:

    Code:
    INSERT INTO Table1 ( Col2 )
    SELECT Col2
    FROM Table2.Col2;

    Comment

    • flashguy
      New Member
      • Jun 2007
      • 7

      #3
      Last question

      Appending the query works :) however, In the form, i wanted to contain multiple textboxes that submits to the same field. However, when i start adding info to the text box, all other bounded textboxes for the same field will be mirrored.

      Is there any way around this?

      Comment

      Working...