<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>Forem: Samuel Mukoma</title>
    <description>The latest articles on Forem by Samuel Mukoma (@commacap).</description>
    <link>https://forem.com/commacap</link>
    <image>
      <url>https://media2.dev.to/dynamic/image/width=90,height=90,fit=cover,gravity=auto,format=auto/https:%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F2556490%2Fb335930c-da44-40bb-a896-1f91262b3f77.jpg</url>
      <title>Forem: Samuel Mukoma</title>
      <link>https://forem.com/commacap</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://forem.com/feed/commacap"/>
    <language>en</language>
    <item>
      <title>How I Completed My First SQL Project (And What I Learned)</title>
      <dc:creator>Samuel Mukoma</dc:creator>
      <pubDate>Wed, 11 Dec 2024 09:39:08 +0000</pubDate>
      <link>https://forem.com/commacap/how-i-completed-my-first-sql-project-and-what-i-learned-2apb</link>
      <guid>https://forem.com/commacap/how-i-completed-my-first-sql-project-and-what-i-learned-2apb</guid>
      <description>&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F9d712uc253gz20h2jkay.jpg" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F9d712uc253gz20h2jkay.jpg" alt="Image description" width="800" height="800"&gt;&lt;/a&gt;&lt;br&gt;
I finally got to do my first (of many) SQL project. I was sitting on the idea of going into data analytics for quite a while. A good friend of mine suggested that it would be a suitable addition to my skills following my background in finance. He pointed me in the right direction, I did some own research to find out the learning path to data analytics/engineering and now here we are, work in progress. SQL armor into my arsenal! &lt;/p&gt;

&lt;p&gt;When I first started learning SQL, I had no idea how much power those simple queries could hold. But after completing my first real-world project, I now see why SQL is the backbone of data analysis. Now, without further ado...&lt;/p&gt;

&lt;p&gt;🚀 The Project&lt;br&gt;
I set out to analyze job postings for Data Analyst roles, asking questions like:&lt;/p&gt;

&lt;p&gt;What are the highest-paying jobs?&lt;br&gt;
What skills do these jobs require?&lt;br&gt;
Which skills are the most in-demand and lucrative?&lt;br&gt;
The goal was to not just learn SQL but also uncover trends in the job market that could help me (and others) prioritize learning specific skills. The data is from a year ago (2023) but the insights from running the queries remain invaluable!&lt;/p&gt;

&lt;p&gt;The Tools I Used&lt;br&gt;
To get started, I worked with:&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;SQLite for "lightweight" querying. SQLite was the main editor while I learnt the basics. I loved the convenience of accessing it from my browser. &lt;/li&gt;
&lt;li&gt;PostgreSQL for database management. I was able to create an IDE and a create a local database.&lt;/li&gt;
&lt;li&gt;SQL for querying job and skill data.&lt;/li&gt;
&lt;li&gt;VS Code for editing my SQL queries. I was fascinated that it allows to write and edit code in any programming language and its flexibility with integration to other resources such as PostgreSQL and GitHub.&lt;/li&gt;
&lt;li&gt;GitHub to organize and share my scripts.
The database itself had four tables: job postings, company data, skills required, and skill details. Pretty standard stuff, but enough to dig into some interesting insights.&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;What I Did&lt;br&gt;
Here’s how it went:&lt;/p&gt;

&lt;p&gt;First, The Basics&lt;br&gt;
I started with simple queries like filtering (WHERE), sorting (ORDER BY), and joining tables (INNER JOIN). Writing those first few lines of SQL felt empowering—I was finally communicating with data.&lt;/p&gt;

&lt;p&gt;Going Advanced&lt;br&gt;
Next, I leveled up with Common Table Expressions (CTEs), CASE statements, and even some date functions. It was challenging, but these tools turned complex queries into manageable steps.&lt;/p&gt;

&lt;p&gt;The Fun Part: The Project&lt;br&gt;
Finally, I applied everything I’d learned to answer real questions:&lt;/p&gt;

&lt;p&gt;Top-Paying Jobs: Remote Data Analyst roles at companies like Meta and AT&amp;amp;T offered salaries up to $650,000.&lt;br&gt;
In-Demand Skills: SQL ruled the list, appearing in 90,000+ job postings. Python and Tableau weren’t far behind.&lt;br&gt;
Optimal Skills to Learn: Balancing demand and salary data, I found SQL, Python, and Tableau to be must-haves for career growth.&lt;/p&gt;

&lt;p&gt;My Key Takeaways&lt;br&gt;
SQL is Your Superpower&lt;br&gt;
SQL transforms data into insights—quickly and effectively. Knowing it opens doors to solving real problems.&lt;/p&gt;

&lt;p&gt;Skills Matter&lt;br&gt;
Some skills, like SQL and Python, are timeless. But staying updated with newer tools like cloud computing, Snowflake or Go can unlock greater possibilities in the data career.&lt;/p&gt;

&lt;p&gt;Start Small, Think Big&lt;br&gt;
This project began with simple queries, but as I connected the dots, it evolved into a powerful analysis of skills and salaries.&lt;/p&gt;

&lt;p&gt;Why This Matters&lt;br&gt;
Learning SQL wasn’t just about gaining a technical skill, it was about empowering myself to make data-driven decisions. Now, I can identify trends, spot opportunities, and prioritize skills that matter most in today’s job market.&lt;/p&gt;

&lt;p&gt;If you’re new to SQL, I’d highly recommend starting with a project like this. It’s not just a learning experience, it’s a confidence booster.&lt;/p&gt;

&lt;p&gt;You can find this project here: &lt;a href="https://github.com/commacap/SQL-Project.git" rel="noopener noreferrer"&gt;https://github.com/commacap/SQL-Project.git&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Got thoughts on SQL or your own beginner projects to share? Let me know in the comments—I’d love to hear your story!&lt;/p&gt;

</description>
      <category>sql</category>
      <category>postgres</category>
      <category>mysql</category>
      <category>datascience</category>
    </item>
  </channel>
</rss>
