Hi i have two tables which are joined by a column id.
Table A is like this:
sequence
id
cod_a
cod_b
cod_c
notes
Table B:
sequence
id
..
...
cod_channel
What i want to do is add a new column cod_channel in table a which will contain data of table b. Then drop table b because all information are useless unless cod_channel column.
How can this be done? As i told they are related by id.
I need to update table A but i don't know how
Please help
Table A is like this:
sequence
id
cod_a
cod_b
cod_c
notes
Table B:
sequence
id
..
...
cod_channel
What i want to do is add a new column cod_channel in table a which will contain data of table b. Then drop table b because all information are useless unless cod_channel column.
How can this be done? As i told they are related by id.
I need to update table A but i don't know how
Please help