-- Grants for 'sally'@'%' CREATE USER IF NOT EXISTS 'sally'@'%'; ALTER USER 'sally'@'%' IDENTIFIED WITH 'mysql_native_password' REQUIRE NONE PASSWORD EXPIRE DEFAULT ACCOUNT UNLOCK; GRANT INSERT (city), SELECT (city_id) ON `sakila`.`city` TO 'sally'@'%'; GRANT SELECT (DateCreated, PaymentStat, PckPrice, SANumber) ON `test`.`t` TO 'sally'@'%'; GRANT USAGE ON *.* TO 'sally'@'%';