-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathperiodic_table.sql
139 lines (101 loc) · 3.96 KB
/
periodic_table.sql
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
--
-- PostgreSQL database dump
--
-- Dumped from database version 12.9 (Ubuntu 12.9-2.pgdg20.04+1)
-- Dumped by pg_dump version 12.9 (Ubuntu 12.9-2.pgdg20.04+1)
SET statement_timeout = 0;
SET lock_timeout = 0;
SET idle_in_transaction_session_timeout = 0;
SET client_encoding = 'UTF8';
SET standard_conforming_strings = on;
SELECT pg_catalog.set_config('search_path', '', false);
SET check_function_bodies = false;
SET xmloption = content;
SET client_min_messages = warning;
SET row_security = off;
DROP DATABASE periodic_table;
--
-- Name: periodic_table; Type: DATABASE; Schema: -; Owner: postgres
--
CREATE DATABASE periodic_table WITH TEMPLATE = template0 ENCODING = 'UTF8' LC_COLLATE = 'C.UTF-8' LC_CTYPE = 'C.UTF-8';
ALTER DATABASE periodic_table OWNER TO postgres;
\connect periodic_table
SET statement_timeout = 0;
SET lock_timeout = 0;
SET idle_in_transaction_session_timeout = 0;
SET client_encoding = 'UTF8';
SET standard_conforming_strings = on;
SELECT pg_catalog.set_config('search_path', '', false);
SET check_function_bodies = false;
SET xmloption = content;
SET client_min_messages = warning;
SET row_security = off;
SET default_tablespace = '';
SET default_table_access_method = heap;
--
-- Name: elements; Type: TABLE; Schema: public; Owner: freecodecamp
--
CREATE TABLE public.elements (
atomic_number integer NOT NULL,
symbol character varying(2),
name character varying(40)
);
ALTER TABLE public.elements OWNER TO freecodecamp;
--
-- Name: properties; Type: TABLE; Schema: public; Owner: freecodecamp
--
CREATE TABLE public.properties (
atomic_number integer NOT NULL,
type character varying(30),
weight numeric(9,6) NOT NULL,
melting_point numeric,
boiling_point numeric
);
ALTER TABLE public.properties OWNER TO freecodecamp;
--
-- Data for Name: elements; Type: TABLE DATA; Schema: public; Owner: freecodecamp
--
INSERT INTO public.elements VALUES (1, 'H', 'Hydrogen');
INSERT INTO public.elements VALUES (2, 'he', 'Helium');
INSERT INTO public.elements VALUES (3, 'li', 'Lithium');
INSERT INTO public.elements VALUES (4, 'Be', 'Beryllium');
INSERT INTO public.elements VALUES (5, 'B', 'Boron');
INSERT INTO public.elements VALUES (6, 'C', 'Carbon');
INSERT INTO public.elements VALUES (7, 'N', 'Nitrogen');
INSERT INTO public.elements VALUES (8, 'O', 'Oxygen');
INSERT INTO public.elements VALUES (1000, 'mT', 'moTanium');
--
-- Data for Name: properties; Type: TABLE DATA; Schema: public; Owner: freecodecamp
--
INSERT INTO public.properties VALUES (1, 'nonmetal', 1.008000, -259.1, -252.9);
INSERT INTO public.properties VALUES (2, 'nonmetal', 4.002600, -272.2, -269);
INSERT INTO public.properties VALUES (3, 'metal', 6.940000, 180.54, 1342);
INSERT INTO public.properties VALUES (4, 'metal', 9.012200, 1287, 2470);
INSERT INTO public.properties VALUES (5, 'metalloid', 10.810000, 2075, 4000);
INSERT INTO public.properties VALUES (6, 'nonmetal', 12.011000, 3550, 4027);
INSERT INTO public.properties VALUES (7, 'nonmetal', 14.007000, -210.1, -195.8);
INSERT INTO public.properties VALUES (8, 'nonmetal', 15.999000, -218, -183);
INSERT INTO public.properties VALUES (1000, 'metalloid', 1.000000, 10, 100);
--
-- Name: elements elements_atomic_number_key; Type: CONSTRAINT; Schema: public; Owner: freecodecamp
--
ALTER TABLE ONLY public.elements
ADD CONSTRAINT elements_atomic_number_key UNIQUE (atomic_number);
--
-- Name: elements elements_pkey; Type: CONSTRAINT; Schema: public; Owner: freecodecamp
--
ALTER TABLE ONLY public.elements
ADD CONSTRAINT elements_pkey PRIMARY KEY (atomic_number);
--
-- Name: properties properties_atomic_number_key; Type: CONSTRAINT; Schema: public; Owner: freecodecamp
--
ALTER TABLE ONLY public.properties
ADD CONSTRAINT properties_atomic_number_key UNIQUE (atomic_number);
--
-- Name: properties properties_pkey; Type: CONSTRAINT; Schema: public; Owner: freecodecamp
--
ALTER TABLE ONLY public.properties
ADD CONSTRAINT properties_pkey PRIMARY KEY (atomic_number);
--
-- PostgreSQL database dump complete
--