zero-perfoliate
zero-perfoliate

Author Topic: copy data from a column in table a into a column in table b!  (Read 355 times)

Offline jcrensha627

  • New PHP Members
  • Posts: 4
  • Karma: +0/-0
copy data from a column in table a into a column in table b!
« on: February 28, 2009, 04:25:00 PM »
I have a column called price in table a. and a column called price in table b - I am trying to figure how to make the column in table b be populated by the column in table a.

EXAMPLE

TABLE A TABLE B

price price
=== ===
50 (here i want the 50 from table a to appear automatically)

Offline PhPHelper

  • http://Digiscapers.com
  • Full Member
  • PHP Problem Solvers
  • ****
  • Posts: 179
  • Karma: +50/-0
    • Bad Apple Mail
Re: copy data from a column in table a into a column in table b!
« Reply #1 on: February 28, 2009, 05:25:45 PM »
after the price is put into table A run another query right after to insert into table B

 

zero-perfoliate