Add users to data base from MySQL workbench

One command does it nicely:

Grant insert, update, select, delete on DATABASENAME.* to ‘ANY-USERNAME’@’localhost’ identified by ‘PASSWORD’;

Have fun!
Cherio!