-- Replace "db", "user" and "password" with respective database names, usernames and passwords CREATE DATABASE db; CREATE USER user IDENTIFIED BY 'password'; GRANT ALL ON db.* TO user;