Difference between revisions of "Talk:MySQL"

From SME Server
Jump to navigationJump to search
(New page: When trying to remove a user, I needed to specifically open the 'mysql' database first, like this: use mysql; DELETE FROM user WHERE user = 'username'; FLUSH PRIVILEGES; ~~~~)
 
m
Line 5: Line 5:
  
 
[[User:Mmccarn|Mmccarn]] 12:05, 16 September 2008 (UTC)
 
[[User:Mmccarn|Mmccarn]] 12:05, 16 September 2008 (UTC)
 +
 +
:Thanks for the heads-up, I have modified the command to select the database first now. <small>—&nbsp;[[User:Cactus|Cactus]] ([[User talk:Cactus|talk]]&nbsp;|&nbsp;[[Special:Contributions/Cactus|contribs]])&nbsp;</small> 11:49, 17 September 2008 (UTC)

Revision as of 13:49, 17 September 2008

When trying to remove a user, I needed to specifically open the 'mysql' database first, like this:

use mysql;
DELETE FROM user WHERE user = 'username';
FLUSH PRIVILEGES;

Mmccarn 12:05, 16 September 2008 (UTC)

Thanks for the heads-up, I have modified the command to select the database first now. — Cactus (talk | contribs 11:49, 17 September 2008 (UTC)