Skip to content

Commit c807e9a

Browse files
authored
Update README.md
1 parent 8ea02db commit c807e9a

File tree

1 file changed

+10
-1
lines changed

1 file changed

+10
-1
lines changed

README.md

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,10 @@
1-
# mysql_basic
1+
# 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

Comments
 (0)