FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
SpringBootLearning/springboot-mybatis/account.sql at master · JavaFramesSource/SpringBootLearning · GitHub
Uh oh!
There was an error while loading.
Please reload this page
.
JavaFramesSource
/
SpringBootLearning
Public
forked from
forezp/SpringBootLearning
Notifications
You must be signed in to change notification settings
Fork
0
Star
0
Code
Pull requests
0
Actions
Projects
Wiki
Security and quality
0
Insights
Additional navigation options
Code
Pull requests
Actions
Projects
Wiki
Security and quality
Insights
Expand file tree
Breadcrumbs
SpringBootLearning
/
springboot-mybatis
/
account.sql
Copy path
More file actions
More file actions
Latest commit
History
History
History
executable file
·
11 lines (11 loc) · 424 Bytes
Breadcrumbs
SpringBootLearning
/
springboot-mybatis
/
account.sql
Copy path
File metadata and controls
executable file
·
11 lines (11 loc) · 424 Bytes
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
1
2
3
4
5
6
7
8
9
10
11
--
create table `account`
#
DROP TABLE `account` IF EXISTS
CREATE
TABLE
`
account
` (
`
id
`
int
(
11
)
NOT NULL
AUTO_INCREMENT,
`
name
`
varchar
(
20
)
NOT NULL
,
`
money
`
double DEFAULT
NULL
,
PRIMARY KEY
(
`
id
`
)
) ENGINE
=
InnoDB AUTO_INCREMENT
=
4
DEFAULT CHARSET
=
utf8;
INSERT INTO
`
account
`
VALUES
(
'
1
'
,
'
aaa
'
,
'
1000
'
);
INSERT INTO
`
account
`
VALUES
(
'
2
'
,
'
bbb
'
,
'
1000
'
);
INSERT INTO
`
account
`
VALUES
(
'
3
'
,
'
ccc
'
,
'
1000
'
);
Back
|
FazBrowse Home
|
New Git URL