It doesn't start automatically at login
mysql.server start
mysql.server stop
mysql -uroot -p
Just hit enter on the password screen if there is no password set (default).
create a user: create user '[username]'@'localhost';
delete a user: drop user '[username]'@'localhost';
create a database: create database [db_name];
drop a database: drop database [db_name];
drop a column: ALTER TABLE [db_name].[table_name] DROP [column_name]
grant all privilages to a user for a specific database: GRANT ALL ON [db_name].* TO '[username]'@'localhost';
You can run them from a file like so:
mysql -uroot -p
source [file_name]
or, you could use a HEREDOC:
mysql -uroot -p <<'END'
[one line of stuff]
[another line of stuff]
END