I have two tables (A & B).
I want to duplicate a row from Table A to Table B when a value of a column in Table A is equal to x, how would I do that using a trigger?
Table A is constantly updating, via query in my vb.net program, until such time that a column in Table A equals to x, I want to copy that row into Table B, not via another query on vb.net but via mysql database trigger.
Any input would be appreciated.
Thanks