FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
sql2csv/schema/postgresql.sql at main · gabfl/sql2csv · GitHub
gabfl
/
sql2csv
Public
Notifications
You must be signed in to change notification settings
Fork
10
Star
33
Code
Issues
2
Pull requests
0
Actions
Projects
Security and quality
0
Insights
Additional navigation options
Code
Issues
Pull requests
Actions
Projects
Security and quality
Insights
Expand file tree
Breadcrumbs
sql2csv
/
schema
/
postgresql.sql
Copy path
More file actions
More file actions
Latest commit
History
History
History
10 lines (9 loc) · 477 Bytes
Breadcrumbs
sql2csv
/
schema
/
postgresql.sql
Copy path
File metadata and controls
10 lines (9 loc) · 477 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
CREATE
TABLE
some_pg_table
(
id
SERIAL
primary key
,
some_int
integer
not null
,
some_str
text
not null
,
some_date
timestamp without time zone
);
INSERT INTO
some_pg_table (some_int, some_str, some_date)
VALUES
(
12
,
'
hello world
'
,
'
2018-12-01 12:23:12
'
);
INSERT INTO
some_pg_table (some_int, some_str, some_date)
VALUES
(
15
,
'
hello
'
,
'
2018-12-05 12:18:12
'
);
INSERT INTO
some_pg_table (some_int, some_str, some_date)
VALUES
(
18
,
'
world
'
,
'
2018-12-008 12:17:12
'
);
Back
|
FazBrowse Home
|
New Git URL