I have two tables, tableA and tableB. Table A has 4 columns, while Table B has 3 columns. The last column of table A is blank and in this column I want to show the difference between the third column in tables A and B.
Table A name=valuation_average. Table B Name = Valuation_Cost. Their third column names are both cost_col (but the values are different, I want to show this difference in the fourth column in tableA, called "difference", the column already exists and named it just has no value.)
Also remember that the rows may not be equal, I mean the first row in table A may be different from the first row in table B. The primary key is the first column of both tables, called "code"
You can try mysql-update-join.
In your case, maybe
can solve your problem.