We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8ea02db commit c807e9aCopy full SHA for c807e9a
README.md
@@ -1 +1,10 @@
1
-# mysql_basic
+# mysql_basic
2
+
3
+<h2>Create MySql database</h2>
4
+<code>create database user_db;<br></code>
5
+<code>create user 'mysql_access'@'%' identified by 'mysql123';<br></code>
6
+<code>grant all on db_example.* to 'mysql_access'@'%';<br></code>
7
8
+<h2>Build</h2>
9
+<code>cd mysql-basic-functionalities<br></code>
10
+<code>mvnw spring-boot:run<br></code>
0 commit comments