Learning SQL
CREATE USER 'user'@'localhost' IDENTIFIED BY 'password'; GRANT ALL PRIVILEGES ON bank . * TO 'user'@'localhost';
mysql -u username -p database
gender CHAR(1) CHECK (gender IN ('M','F')) # Does not enforce gender ENUM('M','F') # Does enforce