If your web host allows you to telnet in, you should be able to do this via a telnet windows.
If you're on a windows machine, go to run and type
telnet www.yourdomain.com
Then login with your web host's assigned username and password (same as ftp, usually).
Then at telnet prompt run mysql program by typing:
mysql -uusername -ppassword dbname
type the commands I gave you earlier, making sure to add ";" to end of every command.
When done, type "exit" to exit mysql and "exit" again to log out.
I'm assuming you're being hosted on a "unix-type" machine.
There are a lot of good tutorials on mysql around, there's a good general course at sqlcourse.com. If you're serious about developing, you need to be able to run msyql from a command prompt also, IMHO.
Good luck.