Add an user to an mysql account


/ Published in: SQL
Save to your folder(s)



Copy this code and paste it in your HTML
  1. GRANT ALL privileges ON trabajar.* TO 'trabajar'@'192.168.10.0/255.255.255.0' IDENTIFIED BY 'password';
  2. GRANT ALL privileges ON trabajar.* TO 'trabajar'@'localhost' IDENTIFIED BY 'password';
  3. FLUSH privileges;

Report this snippet


Comments


You need to login to view comments.