Create a user named joss with the password f1refly, logging in from the localhost only, with all privileges plus GRANT OPTION on the duck_sales table only. : Password « User Permission « SQL / MySQL
Create a user named joss with the password f1refly, logging in from the localhost only, with all privileges plus GRANT OPTION on the duck_sales table only.
GRANT ALL ON duckwear.duck_sales TO joss@localhost
IDENTIFIED BY "f1refly" WITH GRANT OPTION;