Learning Journal week 4
This week marks the halfway point of the course, and looking back, I can already see how much I’ve learned about SQL and databases. Here are five key things I’ve taken away so far: I learned how to create tables using CREATE TABLE and define data types for each column. That helped me understand how important it is to plan out a table’s structure before adding data. I got more comfortable using SELECT statements to query data, especially with WHERE , ORDER BY , and GROUP BY . These commands make it possible to filter and organize results in useful ways. I practiced different types of joins—inner, left, right, and full—and how they connect data from multiple tables. This was confusing at first, but now I can see how powerful joins are for real-world queries. I learned about primary keys and foreign keys, and how they keep relationships consistent between tables. That made me realize how databases maintain order and prevent duplicate or missing links. I discovered how aggr...