Working with multiple tables 29
Once you've verified that this works, you'll want to remove the extraneous genre column in
the songs table. In CocoaMySQL you can just choose the column in the structure tab and
delete it. In the mysql command line utility use:
alter table songs drop column genre;
You no longer need that column.