USE `mysql;
SELECT COUNT * FROM `user`;
SHOW TABLES LIKE 'user';
SHOW COLUMNS FROM `user` LIKE '%';
GRANT ALL PRIVILEGES ON *.* TO 'test'@'%' IDENTIFIED by '123456789';
FLUSH PRIVILEGES;
isn't this the SQL command to create a new user on it??
if not does anyone know it??