FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
java-architect-util/two-data-source/sql/user.sql at main · coderdream/java-architect-util · GitHub
coderdream
/
java-architect-util
Public
Notifications
You must be signed in to change notification settings
Fork
7
Star
7
Code
Issues
1
Pull requests
0
Actions
Projects
Wiki
Security and quality
0
Insights
Additional navigation options
Code
Issues
Pull requests
Actions
Projects
Wiki
Security and quality
Insights
Expand file tree
Breadcrumbs
java-architect-util
/
two-data-source
/
sql
/
user.sql
Copy path
More file actions
More file actions
Latest commit
History
History
History
36 lines (29 loc) · 978 Bytes
Breadcrumbs
java-architect-util
/
two-data-source
/
sql
/
user.sql
Copy path
File metadata and controls
36 lines (29 loc) · 978 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
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
/*
Navicat Premium Data Transfer
Source Server : 172.16.104.131-水利枢纽
Source Server Type : MySQL
Source Server Version : 80028
Source Host : 172.16.104.131:30895
Source Schema : code_system
Target Server Type : MySQL
Target Server Version : 80028
File Encoding : 65001
Date: 09/09/2022 10:26:02
*/
SET
NAMES utf8mb4;
SET
FOREIGN_KEY_CHECKS
=
0
;
--
----------------------------
--
Table structure for user
--
----------------------------
DROP
TABLE
IF EXISTS
`
user
`
;
CREATE
TABLE
`
user
` (
`
id
`
int
NOT NULL
,
`
username
`
varchar
(
255
) CHARACTER
SET
utf8mb4 COLLATE utf8mb4_0900_ai_ci
NULL
DEFAULT
NULL
,
`
age
`
int
NULL
DEFAULT
NULL
,
PRIMARY KEY
(
`
id
`
) USING BTREE
) ENGINE
=
InnoDB CHARACTER
SET
=
utf8mb4 COLLATE
=
utf8mb4_0900_ai_ci ROW_FORMAT
=
Dynamic;
--
----------------------------
--
Records of user
--
----------------------------
INSERT INTO
`
user
`
VALUES
(
1
,
'
abc
'
,
18
);
SET
FOREIGN_KEY_CHECKS
=
1
;
Back
|
FazBrowse Home
|
New Git URL