Adding some more stuff

This commit is contained in:
2015-03-19 07:12:04 -05:00
parent 744a86cb52
commit 62cd9e29c7
15 changed files with 333 additions and 0 deletions

View File

@@ -0,0 +1,21 @@
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<link rel="Stylesheet" type="text/css" href="style.css">
<title>Server_Admin_MySQL</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
</head>
<body>
<h3 id="toc_0.0.1">Grant User Privileges</h3>
<p>
<code>GRANT SELECT,INSERT,UPDATE,DELETE,CREATE,DROP ON database.&lt;table|*&gt; TO '&lt;user&gt;'@'&lt;localhost|domain&gt;';</code>
</p>
<h3 id="toc_0.0.2">View User Privileges</h3>
<p>
<code>SHOW GRANTS FOR '&lt;user&gt;'@'&lt;localhost|domain&gt;';</code>
</p>
</body>
</html>