Pgexercises
pgexercises.com
PostgreSQL Exercises
Welcome to PostgreSQL Exercises! This site was born when I noticed that there's a load of material out there to help people learn about SQL, but not a great deal to make it easy to learn by doing. PGExercises provides a series of questions and explanations built on a single, simple dataset.
GitHub
github.com › ozencb › postgresql-exercises
GitHub - ozencb/postgresql-exercises: PostgreSQL questions and answers on a single dataset · GitHub
PostgreSQL questions and answers on a single dataset - GitHub - ozencb/postgresql-exercises: PostgreSQL questions and answers on a single dataset
Starred by 99 users
Forked by 27 users
Languages HTML 94.8% | CSS 5.0% | JavaScript 0.2%
Websites to practice postgreSQL ?
The guided tutorials at Postgres Playground that we developed at Crunchy Data may be helpful. More on reddit.com
PostgreSQL Exercises
24.8k members in the PostgreSQL community. The home of the most advanced Open Source database server on the worlds largest and most active Front … More on reddit.com
PostgreSQL Exercises - exercises and support for learning SQL
Author here - this has been my side project for some time, and I decided it was about time I actually released something :-). If anyone has comments, suggestions, or criticisms I'd be happy to hear them. More on reddit.com
Looking for database and exercises for practice
exercises: https://sqlzoo.net/wiki/SQL_Tutorial fun "detective" puzzle: https://mystery.knightlab.com/ More on reddit.com
Videos
Let's Solve 42 PostgreSQL Exercises: Basic
Let's Solve 42 PostgreSQL Exercises: Introduction
Let's Solve 42 PostgreSQL Exercises: Joins and Subqueries
Let's Solve 42 PostgreSQL Exercises: Aggregations Pt. 2
02:24
Let's Solve 42 PostgreSQL Exercises: Conclusion - YouTube
04:48
Mastering SQL with PostgreSQL: Hands-On Exercises for Database ...
Ozencb
ozencb.github.io › postgresql-exercises
PostgreSQL Exercises
This is a compilation of all the questions and answers on Alisdair Owen's PostgreSQL Exercises. Keep in mind that actually solving these problems will make you go further than just skimming through this guide, so make sure to pay PostgreSQL Exercises a visit. ... Produce a timestamp for 1 a.m. on the 31st of August 2012 ... It's pretty simple to get going with ...
Itversity
postgresql.itversity.com › mastering_postgresql_exercises.html
Exercises - Mastering Postgresql — Mastering SQL using Postgresql
Provide the delete statement as answer for this exercise. Validation - Get count of all published courses by author and make sure output is sorted in descending order by count. SELECT course_author, count(1) AS course_count FROM courses WHERE course_status= 'published' GROUP BY course_author · Here are some of the exercises for which you can write SQL queries to self evaluate.
W3Schools
w3schools.com › postgresql › postgresql_exercises.php
PostgreSQL Exercises
The exercises are a mix of "multiple choice" and "fill in the blanks" questions. There are between 3 and 9 questions in each category. The answer can be found in the corresponding tutorial chapter.
W3schools
w3schools.dev › postgresql › postgresql_exercises.php
PostgreSQL Exercises
We have gathered a variety of PostgreSQL exercises (with answers) for each PostgreSQL Chapter.
GitHub
github.com › Arkantos-13 › PostgreSQL_Exercises_Answers
GitHub - Arkantos-13/PostgreSQL_Exercises_Answers: All of my answers in the PostgreSQL Exercises · GitHub
How can you output a list of all members, including the individual who recommended them (if any), without using any joins? Ensure that there are no duplicates in the list, and that each firstname + surname pairing is formatted as a column and ordered. SELECT DISTINCT mems.firstname || ' ' || mems.surname as member, ( SELECT recs.firstname || ' ' || recs.surname as recommender FROM cd.members recs WHERE recs.memid = mems.recommendedby ) FROM cd.members mems ORDER BY member; The Produce a list of costly bookings exercise contained some messy logic: we had to calculate the booking cost in both the WHERE clause and the CASE statement.
Author Arkantos-13
GitHub
gist.github.com › kota8 › cc0c3f21d8e0822b481ec6ccd488457f
My answer to PostgreSQL Exercises (https://pgexercises.com/) · GitHub
My answer to PostgreSQL Exercises (https://pgexercises.com/) Raw · PostgreSQL-Exercises.md · PostgreSQL Exercises · CREATE TABLE bookings ( bookid integer NOT NULL, facid integer NOT NULL, memid integer NOT NULL, starttime timestamp without time zone NOT NULL, slots integer NOT NULL ); CREATE TABLE facilities ( facid integer NOT NULL, name character varying(100) NOT NULL, membercost numeric NOT NULL, guestcost numeric NOT NULL, initialoutlay numeric NOT NULL, monthlymaintenance numeric NOT NULL ); CREATE TABLE members ( memid integer NOT NULL, surname character varying(200) NOT NULL, firstname character varying(200) NOT NULL, address character varying(300) NOT NULL, zipcode integer NOT NULL, telephone character varying(20) NOT NULL, recommendedby integer, joindate timestamp without time zone NOT NULL ); How can you retrieve all the information from the cd.facilities table?
GitHub
github.com › Ozencb › postgresql-exercises › blob › master › README.md
postgresql-exercises/README.md at master · ozencb/postgresql-exercises
PostgreSQL questions and answers on a single dataset - postgresql-exercises/README.md at master · ozencb/postgresql-exercises
Author ozencb
GitHub
gist.github.com › kjs222 › 7a4260e36ba074b366ef1cce338fb7e1
PostgreSQL Practice Exercises · GitHub
Sample solutions to exercises can be found here: https://gist.github.com/kjs222/5169a292d87d1774832b7160f7ba2b49
Vertabelo Academy
academy.vertabelo.com › course › postgresql-queries-online-practice › aggregation-and-grouping › introduction › introduction
PostgreSQL Queries (Online Practice) | Exercise Set | Vertabelo Academy
Solidify your knowledge of using PostgreSQL queries! This online practice set is dedicated to users who know SQL basics.
Reddit
reddit.com › r/postgresql › websites to practice postgresql ?
r/PostgreSQL on Reddit: Websites to practice postgreSQL ?
October 19, 2023 -
I have been learning postgreSQL for few days now this is my first relational database, I have been using https://pgexercises.com/ for practice. could you guys suggest me some similar sites to practice and a postgreSQL playground as well.
PostgreSQL
postgresql.org › docs › online-resources
PostgreSQL: Tutorials & Other Resources
Copyright © 1996-2026 The PostgreSQL Global Development Group
LearnSQL
learnsql.com › home › sql courses › sql practice set in postgresql
SQL Practice Set in PostgreSQL | Online Course
This online practice set consists of 88 interactive exercises. You will practice using simple statements and clauses, like SELECT or JOIN, as well as more advanced concepts, such as subqueries. 4.73 ★★★★★ ★★★★★ (1578 ratings) ... Use SELECT and WHERE to filter data. Aggregate and group data using clauses. Join multiple tables. Work with complicated subqueries. Use PostgreSQL functions in practice.
GitHub
github.com › tlgs › pgexercises
GitHub - tlgs/pgexercises: solutions to the PostgreSQL Exercises · GitHub
Solutions to the PostgreSQL Exercises. This project aims to be consistent with the Mozilla SQL Style Guide.
Starred by 4 users
Forked by 4 users
Languages SQL 96.7% | Dockerfile 3.3%
GitHub
github.com › saifimd1234 › PostgreSQL_Exercises
GitHub - saifimd1234/PostgreSQL_Exercises · GitHub
🌟 Here, you'll find my solutions to a series of SQL challenges designed to sharpen my skills in relational databases and PostgreSQL. These exercises are taken from PGExercises, a fantastic platform to practice and improve SQL proficiency through real-world datasets. ... ✅ Solutions to SQL queries, from basic SELECT and WHERE clauses to advanced concepts like JOINs, WINDOW functions, aggregations, and recursive queries. 🗂️ Well-structured queries that adhere to industry standards and are optimized for performance. 🧠 Insightful comments within each query file, explaining the logic and approach.
Author saifimd1234