<?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>DEV Community: Rahman</title>
    <description>The latest articles on DEV Community by Rahman (@rahmanfrr).</description>
    <link>https://dev.to/rahmanfrr</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.us-east-2.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F4105540%2F74d721d1-cdda-4124-9e8d-20cdbf66ffe7.png</url>
      <title>DEV Community: Rahman</title>
      <link>https://dev.to/rahmanfrr</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/rahmanfrr"/>
    <language>en</language>
    <item>
      <title>The Gap Between College SQL and Industry Reality When I was in college, I thought I knew databases.</title>
      <dc:creator>Rahman</dc:creator>
      <pubDate>Wed, 02 Sep 2026 06:19:12 +0000</pubDate>
      <link>https://dev.to/rahmanfrr/the-gap-between-college-sql-and-industry-realitywhen-i-was-in-college-i-thought-i-knew-databases-5eac</link>
      <guid>https://dev.to/rahmanfrr/the-gap-between-college-sql-and-industry-realitywhen-i-was-in-college-i-thought-i-knew-databases-5eac</guid>
      <description>&lt;p&gt;I sat in my 300-level database concepts class and wrote SELECT * FROM users JOIN orders ON users.id = orders.user_id. I got an A. I felt like a genius. I genuinely believed I was ready for a Data Engineering role at a top-tier tech company.&lt;/p&gt;

&lt;p&gt;Then I got my first technical screen with a MAANG company.&lt;/p&gt;

&lt;p&gt;The prompt wasn't about joining two tables. It was about calculating a 7-day rolling average of user retention, partitioned by cohort, and filling in gaps for days where users had zero activity.&lt;/p&gt;

&lt;p&gt;I bombed it. Hard.&lt;/p&gt;

&lt;p&gt;That was the day I realized there is a massive, gaping hole between academic SQL and what the industry actually demands.&lt;/p&gt;

&lt;p&gt;The Problem with College Databases&lt;br&gt;
Academic curriculums are great at teaching you the theory of normalization (Boyce-Codd, anyone?) and the absolute basics of CRUD operations. But they almost universally skip the analytical functions that modern data teams use every single day.&lt;/p&gt;

&lt;p&gt;If you are interviewing for a Data Analyst, Data Engineer, or Backend role today, you aren't going to be tested on 1st Normal Form. You are going to be tested on:&lt;/p&gt;

&lt;p&gt;Advanced Window Functions (ROW_NUMBER(), RANK(), LEAD(), LAG())&lt;br&gt;
Recursive CTEs (Common Table Expressions)&lt;br&gt;
Self-Joins (Comparing rows within the same table)&lt;br&gt;
Date Math &amp;amp; Cohort Analysis&lt;br&gt;
The Headache of Practicing&lt;br&gt;
After I bombed that interview, I knew what I needed to study. But I quickly realized that practicing advanced SQL is an absolute nightmare.&lt;/p&gt;

&lt;p&gt;You essentially have two options:&lt;/p&gt;

&lt;p&gt;Pay $200 for a bloated video course. You watch someone else write code on a whiteboard for 10 hours. You don't actually write any code yourself, so you forget the syntax the second the video ends.&lt;br&gt;
Set up a local environment. You spend your entire Saturday downloading Docker, installing Postgres locally, setting up a database client like DBeaver, and hunting down CSVs of fake data on Kaggle just so you can practice writing a single query.&lt;br&gt;
It’s exhausting. The friction to just "write some code" is incredibly high.&lt;/p&gt;

&lt;p&gt;Building dataDrill&lt;br&gt;
I got so frustrated with the process that I decided to build the tool I wished I had when I was studying for that first interview.&lt;/p&gt;

&lt;p&gt;I built dataDrill.&lt;/p&gt;

&lt;p&gt;It is an entirely in-browser practice platform. You don't install Docker. You don't configure Postgres. You don't download CSVs.&lt;/p&gt;

&lt;p&gt;You just open the website, and you instantly have a real PostgreSQL engine (running locally in your browser via WASM) with tables already populated with data.&lt;/p&gt;

&lt;p&gt;I sourced 90+ real questions directly from technical screens at companies like Meta, Google, Stripe, and Netflix. I specifically curated the questions to focus on the exact things college skipped—the window functions, the self-joins, the date math.&lt;/p&gt;

&lt;p&gt;I also added line-by-line solutions so that when you inevitably get stuck on a recursive CTE, you can see exactly why a specific piece of syntax is used, rather than just copying and pasting a final answer.&lt;/p&gt;

&lt;p&gt;If you are a CS major about to graduate, or a junior dev trying to break into Data Engineering, don't walk into your interview thinking GROUP BY is enough.&lt;/p&gt;

&lt;p&gt;I've left several of the hard challenges on the site completely free. Try them out, test your skills, and bridge the gap before your interviewer exposes it.&lt;/p&gt;

&lt;p&gt;Link: &lt;a href="https://sql-practice-serverless.pages.dev/" rel="noopener noreferrer"&gt;https://sql-practice-serverless.pages.dev/&lt;/a&gt;&lt;/p&gt;

</description>
      <category>career</category>
      <category>database</category>
      <category>interview</category>
      <category>sql</category>
    </item>
  </channel>
</rss>
