Application of subtracting numerical values in different tables
P粉854119263
2023-08-28 19:28:28
<p>I have two tables:</p>
<pre class="brush:php;toolbar:false;">Table A
ID Number Profile
1 100 Baker
2 75 Fields
3 100 Wayward
Table B
ID Number Tag Sender
1 50 on chris
2 50 off james</pre>
<p>I am trying to subtract values with the same ID number from table A and table B</p>
<pre class="brush:php;toolbar:false;">Table C
ID Number
1 50
2 25</pre></p>