Notes on Codecademy "Design Databases with PostgreSQL"
After a frustrating experience with the node-sqlite course on Codecademy, I've concluded that their in-browser instruction environment is not well set up for teaching SQL. Or at least, this course is far weaker than others on Codecademy, which I had been generally satisfied up until this point. I considered switching to a different topic but decided there were still a few more things I wanted to learn. But from here on out, when I fail an exercise, I'm more likely to decide my answer was fine. (More willing to hit "View Solution" to see the answer and compare.) And more importantly, I'm going to review the course syllabus beforehand and skip those with frustrating "Code Challenge" sections.
Which led me to "Design Databases with PostgreSQL" which is technically a "Skill Path" offering rather than a course. Like my previous skill path in web development, I started this skill path and was immediately at 50% completion due to material that overlapped with courses I've already taken. One major difference is that all my Codecademy database courses used SQLite to illustrate general SQL concepts, but this skill path has some PostgreSQL-specific details amongst more general database concepts.
Initially, I was mildly disappointed that the material was shallower than I had expected based on course description. The sales pitch made it sound like we're going to get into some real detailed nuts-and-bolts, but while the course did indeed to into further depth than other courses to date, there were still many topics that ended with "we're not going into more depth, but at least now you are aware it exists." An example concerns database keys. From my earlier courses I had known about primary, foreign, and composite keys. This course mentioned there are also super, candidate, and secondary keys then proceeded to say nothing more about them. As a starting pointer this is fine, I had just expected more.
Once I adjusted my expectations, this skill path was time well spent. We get more information on database schema and that proper design of a schema can make a difference in database performance. Both at development time (make queries easier and less prone to problems) and at runtime (easier updates and faster queries.) Part of this design process is database normalization, which was covered by starting with a poorly designed database. After covering how a poorly normalized database causes problems in use, we are walked through typical normalization techniques to solve those problems.
But those solutions usually have a tradeoff. This course has a recurring theme in the form of database tradeoffs. A competent database engineer has to be able to understand the problem domain and usage patterns to properly prioritize certain constraints versus others. A normalized database has a lot of space, performance, and consistency advantages. But it does tend to make updates and queries more complex by requiring database joins. Similarly, a database index can make queries faster, but maintenance means updates are slower. The index also takes up space on disk.
A light complaint I have about this course is that its illustrative examples were surprisingly poor. One example used an email address as a primary key for a list of people, but a person can have multiple email addresses making it a poor primary key. Another example separated ingredients from recipes, but the ingredient is associated with a fixed amount. It is unrealistic for a cookbook to use, say, the same amount of salt for every recipe.
One of the practice exercises was "Bytes of China", setting up a database that would track information suitable for a restaurant menu. From the starting directions I had looked forward to an open-ended exercise, because it said to: "Create table with columns that make sense based on the description" This came to a screeching halt when we were given information to add to these tables in the form of SQL INSERT
clauses that expect a specific database schema. I had to delete the database schema that made sense to me and rebuild a different schema to suit the exercise data. This was annoying. They could have told us to build to suit their sample data upfront instead of letting us waste time designing our own that wouldn't work.
Gripes aside, I learned a lot of neat things that I expect to use in future projects that might need a database. I learned how it was possible to represent many-to-many relationships with a "join table" that has a composite primary key that consists of a combination of foreign keys. Beyond "PRIMARY KEY
" I learned about constraints like UNIQUE, CHECK
, and REFERENCES
. In the earlier SQLite course I was dismayed to learn it doesn't enforce the schema, calling it a flexible feature instead of a bug. PostgreSQL isn't as free-wheeling but we still need to watch out for times when it becomes inadvertently unhelpful. If I make a mistake trying to put a floating-point number like 1.5 into an integer field, PostgreSQL would round it to 2 without error. Or if I make a mistake putting it into a text field, PostSQL would helpfully convert the number 1.5 to the string "1.5".
Every bit of SQL instruction I've come across before only ever joined two tables, this course was the first to teach me how to join more than two. I can see how this would feel obvious to SQL veterans, but every beginner has to see it at least once:
SELECT table_one.column_one AS alias_one, table_two.column_two AS alias_two, table_three.column_three AS alias_three
FROM table_one
INNER JOIN table_two
ON table_one.primary_key = table_two.foreign_key
INNER JOIN table_three
ON table_two.primary_key = table_three.foreign_key;
I think all of the remaining nifty tricks are PostgreSQL-only, but I'm not sure. The course doesn't make a lot of distinction between thing we can use in other databases versus PostgreSQL-only. So I don't know if I can extract just the date from a timestamp (DATE_PART()
) with other databases, or if I can make this query to examine constraints on record for a table:
SELECT
constraint_name, table_name, column_name
FROM
information_schema.key_column_usage
WHERE
table_name = 'fill in table name';
Given the pg_
prefix, the following query is likely PostgreSQL specific way to list every index built for a table.
SELECT *
FROM pg_Indexes
WHERE tablename = 'fill in table name';
Also with the prefix is a query to show size of a table, which includes space consumed by storing data and all associated index.
SELECT pg_size_pretty (pg_total_relation_size('products'));
And finally, we get a few starting points for performance analysis. Like prepending EXPLAIN ANALYZE
in front of a query to get information on how the database plans out its execution. Or SELECT NOW();
to print out a timestamp before and after an operation so we can see how long it took.
That's a lot of information packed into a single Skill Path. I wished for more, but I can understand there's a tradeoff against making the course too long. Maybe this is the perfect length after all, and just enough for me to learn more on my own later. I can spend years learning all the intricacies of relational databases, but right now I'm more curious to explore something a little different.