FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
java-architect-util/two-data-source/sql/data01.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
/
data01.sql
Copy path
More file actions
More file actions
Latest commit
History
History
History
40 lines (33 loc) · 1.12 KB
Breadcrumbs
java-architect-util
/
two-data-source
/
sql
/
data01.sql
Copy path
File metadata and controls
40 lines (33 loc) · 1.12 KB
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
37
38
39
40
/*
Navicat Premium Data Transfer
Source Server : 172.16.104.131-山洪预警
Source Server Type : PostgreSQL
Source Server Version : 140005
Source Host : 172.16.104.131:31302
Source Catalog : code_system
Source Schema : public
Target Server Type : PostgreSQL
Target Server Version : 140005
File Encoding : 65001
Date: 09/09/2022 10:25:41
*/
--
----------------------------
--
Table structure for data01
--
----------------------------
DROP
TABLE
IF EXISTS
"
public
"
.
"
data01
"
;
CREATE
TABLE
"
public
".
"
data01
"
(
"
id
"
int4
NOT NULL
,
"
a1
"
varchar
(
255
) COLLATE
"
pg_catalog
"
.
"
default
"
,
"
b1
"
varchar
(
255
) COLLATE
"
pg_catalog
"
.
"
default
"
,
"
c1
"
varchar
(
255
) COLLATE
"
pg_catalog
"
.
"
default
"
,
"
d1
"
varchar
(
255
) COLLATE
"
pg_catalog
"
.
"
default
"
)
;
--
----------------------------
--
Records of data01
--
----------------------------
INSERT INTO
"
public
"
.
"
data01
"
VALUES
(
1
,
'
2
'
,
'
3
'
,
'
4
'
,
'
5
'
);
--
----------------------------
--
Primary Key structure for table data01
--
----------------------------
ALTER
TABLE
"
public
"
.
"
data01
"
ADD
CONSTRAINT
"
user_copy2_pkey
"
PRIMARY KEY
(
"
id
"
);
Back
|
FazBrowse Home
|
New Git URL