What exactly do you have 76 of, tables in a database of columns in a table?
Either way, no database will let you drop tables or columns in tables without specifying which tables or columns to drop.
You must either drop them all by hand, or make a backup of the tables you want to keep, drop the database (which will erase all tables and columns) and then restore the tables you wanted to keep.
But before you do anything I suggest you look at an SQL manual and read a lot more about the SQL language and how to create and remove tables and columns.
A forum, a FAQ, what else do you need?