Files
dolthub--doltgresql/testing/dumps/sql/amittannagit_World-Cup-database-project-files.sql
2026-07-13 12:32:25 +08:00

260 lines
8.1 KiB
SQL

-- Downloaded from: https://github.com/amittannagit/World-Cup-database-project-files/blob/cb5dec9fd4d74e0d28e2fc60ffd1e726e9eb1a08/worldcup.sql
--
-- PostgreSQL database dump
--
-- Dumped from database version 12.17 (Ubuntu 12.17-1.pgdg22.04+1)
-- Dumped by pg_dump version 12.17 (Ubuntu 12.17-1.pgdg22.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 worldcup;
--
-- Name: worldcup; Type: DATABASE; Schema: -; Owner: freecodecamp
--
CREATE DATABASE worldcup WITH TEMPLATE = template0 ENCODING = 'UTF8' LC_COLLATE = 'C.UTF-8' LC_CTYPE = 'C.UTF-8';
ALTER DATABASE worldcup OWNER TO freecodecamp;
\connect worldcup
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: games; Type: TABLE; Schema: public; Owner: freecodecamp
--
CREATE TABLE public.games (
game_id integer NOT NULL,
year integer NOT NULL,
round character varying(50) NOT NULL,
winner_id integer NOT NULL,
opponent_id integer NOT NULL,
winner_goals integer NOT NULL,
opponent_goals integer NOT NULL
);
ALTER TABLE public.games OWNER TO freecodecamp;
--
-- Name: games_game_id_seq; Type: SEQUENCE; Schema: public; Owner: freecodecamp
--
CREATE SEQUENCE public.games_game_id_seq
AS integer
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
ALTER TABLE public.games_game_id_seq OWNER TO freecodecamp;
--
-- Name: games_game_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: freecodecamp
--
ALTER SEQUENCE public.games_game_id_seq OWNED BY public.games.game_id;
--
-- Name: teams; Type: TABLE; Schema: public; Owner: freecodecamp
--
CREATE TABLE public.teams (
team_id integer NOT NULL,
name character varying(50) NOT NULL
);
ALTER TABLE public.teams OWNER TO freecodecamp;
--
-- Name: teams_team_id_seq; Type: SEQUENCE; Schema: public; Owner: freecodecamp
--
CREATE SEQUENCE public.teams_team_id_seq
AS integer
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
ALTER TABLE public.teams_team_id_seq OWNER TO freecodecamp;
--
-- Name: teams_team_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: freecodecamp
--
ALTER SEQUENCE public.teams_team_id_seq OWNED BY public.teams.team_id;
--
-- Name: games game_id; Type: DEFAULT; Schema: public; Owner: freecodecamp
--
ALTER TABLE ONLY public.games ALTER COLUMN game_id SET DEFAULT nextval('public.games_game_id_seq'::regclass);
--
-- Name: teams team_id; Type: DEFAULT; Schema: public; Owner: freecodecamp
--
ALTER TABLE ONLY public.teams ALTER COLUMN team_id SET DEFAULT nextval('public.teams_team_id_seq'::regclass);
--
-- Data for Name: games; Type: TABLE DATA; Schema: public; Owner: freecodecamp
--
INSERT INTO public.games VALUES (1, 2018, 'Final', 1, 2, 4, 2);
INSERT INTO public.games VALUES (2, 2018, 'Third Place', 3, 4, 2, 0);
INSERT INTO public.games VALUES (3, 2018, 'Semi-Final', 2, 4, 2, 1);
INSERT INTO public.games VALUES (4, 2018, 'Semi-Final', 1, 3, 1, 0);
INSERT INTO public.games VALUES (5, 2018, 'Quarter-Final', 2, 10, 3, 2);
INSERT INTO public.games VALUES (6, 2018, 'Quarter-Final', 4, 12, 2, 0);
INSERT INTO public.games VALUES (7, 2018, 'Quarter-Final', 3, 14, 2, 1);
INSERT INTO public.games VALUES (8, 2018, 'Quarter-Final', 1, 16, 2, 0);
INSERT INTO public.games VALUES (9, 2018, 'Eighth-Final', 4, 18, 2, 1);
INSERT INTO public.games VALUES (10, 2018, 'Eighth-Final', 12, 20, 1, 0);
INSERT INTO public.games VALUES (11, 2018, 'Eighth-Final', 3, 22, 3, 2);
INSERT INTO public.games VALUES (12, 2018, 'Eighth-Final', 14, 24, 2, 0);
INSERT INTO public.games VALUES (13, 2018, 'Eighth-Final', 2, 26, 2, 1);
INSERT INTO public.games VALUES (14, 2018, 'Eighth-Final', 10, 28, 2, 1);
INSERT INTO public.games VALUES (15, 2018, 'Eighth-Final', 16, 30, 2, 1);
INSERT INTO public.games VALUES (16, 2018, 'Eighth-Final', 1, 32, 4, 3);
INSERT INTO public.games VALUES (17, 2014, 'Final', 33, 32, 1, 0);
INSERT INTO public.games VALUES (18, 2014, 'Third Place', 35, 14, 3, 0);
INSERT INTO public.games VALUES (19, 2014, 'Semi-Final', 32, 35, 1, 0);
INSERT INTO public.games VALUES (20, 2014, 'Semi-Final', 33, 14, 7, 1);
INSERT INTO public.games VALUES (21, 2014, 'Quarter-Final', 35, 42, 1, 0);
INSERT INTO public.games VALUES (22, 2014, 'Quarter-Final', 32, 3, 1, 0);
INSERT INTO public.games VALUES (23, 2014, 'Quarter-Final', 14, 18, 2, 1);
INSERT INTO public.games VALUES (24, 2014, 'Quarter-Final', 33, 1, 1, 0);
INSERT INTO public.games VALUES (25, 2014, 'Eighth-Final', 14, 50, 2, 1);
INSERT INTO public.games VALUES (26, 2014, 'Eighth-Final', 18, 16, 2, 0);
INSERT INTO public.games VALUES (27, 2014, 'Eighth-Final', 1, 54, 2, 0);
INSERT INTO public.games VALUES (28, 2014, 'Eighth-Final', 33, 56, 2, 1);
INSERT INTO public.games VALUES (29, 2014, 'Eighth-Final', 35, 24, 2, 1);
INSERT INTO public.games VALUES (30, 2014, 'Eighth-Final', 42, 60, 2, 1);
INSERT INTO public.games VALUES (31, 2014, 'Eighth-Final', 32, 20, 1, 0);
INSERT INTO public.games VALUES (32, 2014, 'Eighth-Final', 3, 64, 2, 1);
--
-- Data for Name: teams; Type: TABLE DATA; Schema: public; Owner: freecodecamp
--
INSERT INTO public.teams VALUES (1, 'France');
INSERT INTO public.teams VALUES (2, 'Croatia');
INSERT INTO public.teams VALUES (3, 'Belgium');
INSERT INTO public.teams VALUES (4, 'England');
INSERT INTO public.teams VALUES (10, 'Russia');
INSERT INTO public.teams VALUES (12, 'Sweden');
INSERT INTO public.teams VALUES (14, 'Brazil');
INSERT INTO public.teams VALUES (16, 'Uruguay');
INSERT INTO public.teams VALUES (18, 'Colombia');
INSERT INTO public.teams VALUES (20, 'Switzerland');
INSERT INTO public.teams VALUES (22, 'Japan');
INSERT INTO public.teams VALUES (24, 'Mexico');
INSERT INTO public.teams VALUES (26, 'Denmark');
INSERT INTO public.teams VALUES (28, 'Spain');
INSERT INTO public.teams VALUES (30, 'Portugal');
INSERT INTO public.teams VALUES (32, 'Argentina');
INSERT INTO public.teams VALUES (33, 'Germany');
INSERT INTO public.teams VALUES (35, 'Netherlands');
INSERT INTO public.teams VALUES (42, 'Costa Rica');
INSERT INTO public.teams VALUES (50, 'Chile');
INSERT INTO public.teams VALUES (54, 'Nigeria');
INSERT INTO public.teams VALUES (56, 'Algeria');
INSERT INTO public.teams VALUES (60, 'Greece');
INSERT INTO public.teams VALUES (64, 'United States');
--
-- Name: games_game_id_seq; Type: SEQUENCE SET; Schema: public; Owner: freecodecamp
--
SELECT pg_catalog.setval('public.games_game_id_seq', 32, true);
--
-- Name: teams_team_id_seq; Type: SEQUENCE SET; Schema: public; Owner: freecodecamp
--
SELECT pg_catalog.setval('public.teams_team_id_seq', 64, true);
--
-- Name: games games_pkey; Type: CONSTRAINT; Schema: public; Owner: freecodecamp
--
ALTER TABLE ONLY public.games
ADD CONSTRAINT games_pkey PRIMARY KEY (game_id);
--
-- Name: teams teams_name_key; Type: CONSTRAINT; Schema: public; Owner: freecodecamp
--
ALTER TABLE ONLY public.teams
ADD CONSTRAINT teams_name_key UNIQUE (name);
--
-- Name: teams teams_pkey; Type: CONSTRAINT; Schema: public; Owner: freecodecamp
--
ALTER TABLE ONLY public.teams
ADD CONSTRAINT teams_pkey PRIMARY KEY (team_id);
--
-- Name: games games_opponent_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: freecodecamp
--
ALTER TABLE ONLY public.games
ADD CONSTRAINT games_opponent_id_fkey FOREIGN KEY (opponent_id) REFERENCES public.teams(team_id);
--
-- Name: games games_winner_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: freecodecamp
--
ALTER TABLE ONLY public.games
ADD CONSTRAINT games_winner_id_fkey FOREIGN KEY (winner_id) REFERENCES public.teams(team_id);
--
-- PostgreSQL database dump complete
--