I have tables like,
Table A
field1 | field2 | field3 | field4 | field5
Table B
id | field_names
--------------------
1 field2
2 field3
I have to delete field2 and field3 from Table A
( means field names in Table B
).
Is there any way to drop field names which present in Table B
. I can't delete the fields manually.
Thanks in advance
Not sure why you need this. anyway MySQL has no such feature. but if you want really do that, execute following query and execute each rows.
for examples with PHP, (all error check is omitted)