惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

有赞技术团队
有赞技术团队
美团技术团队
博客园 - 司徒正美
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
阮一峰的网络日志
阮一峰的网络日志
S
SegmentFault 最新的问题
博客园_首页
雷峰网
雷峰网
V
V2EX
The Cloudflare Blog
博客园 - 三生石上(FineUI控件)
量子位
Last Week in AI
Last Week in AI
人人都是产品经理
人人都是产品经理
爱范儿
爱范儿
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
博客园 - 聂微东
V
Visual Studio Blog
Hugging Face - Blog
Hugging Face - Blog
博客园 - 【当耐特】
Jina AI
Jina AI
月光博客
月光博客
L
LangChain Blog

DEV Community

Authentication Security Deep Dive: From Brute Force to Salted Hashing (With Java Examples) Why AI Systems Don’t Fail — They Drift Spilling beans for how i learn for exam😁"Reinforcement Learning Cheat Sheet" I Replaced Chrome with Safari for AI Browser Automation. Here's What Broke (and What Finally Worked) How Python Borrows Other People's Work The $40 Architecture: Processing 1 Billion API Requests with 99.99% Uptime Vibe Coding: A Workflow Guide (From Zero to SaaS) Most webhook security guides protect the wrong side. The scary part is delivery. Headless CMS for TanStack Start: Build a Blog with Cosmic EU Age Verification App "Hacked in 2 Minutes" — What Actually Happened Comfy Cloud’s delete function does not actually remove files Running AI Models on GPU Cloud Servers: A Beginner Guide Event-driven media intelligence with AWS Step Functions and Bedrock I scored 500 AI prompts across 8 quality dimensions — here's what broke How to Call Google Gemini API from Next.js (Free Tier, No Backend Needed) The Portal Protocol: Reclaiming Human Connection in the Age of AI How to Fix Your Team's Scattered Knowledge Problem With a Self-Hosted Forum Intro to tc Cloud Functors: A Graph-First Mental Model for the Modern Cloud Designing Multi-Tenant Backends With Both Ownership and Team Access I Built a Neumorphic CSS Library with 77+ Components — Here's What I Learned PostgreSQL Performance Optimization: Why Connection Pooling Is Critical at Scale Cómo construí un SaaS multi-rubro para gestionar expensas en Argentina con FastAPI + Vue 3 🚀 I Built an Ethical Hacking Scanner Tool – Open Source Project I Replaced /usage and /context in Claude Code With a Single Statusline A Pythonic Way to Handle Emails (IMAP/SMTP) with Auto-Discovery and AI-Ready Design I Collected 8.9 Million Polymarket Price Points — Here's What I Found About How Markets Really Move EcoTrack AI — Carbon Footprint Tracker & Dashboard Everyone's Using AI. No One Agrees How. 5 self-hosted ebook managers worth trying in 2026 Building Your First AI Agent with LangChain: From Chatbot to Autonomous Assistant
You Want To Learn SQL? Here Is What I know So far...
Clare Mwangi · 2026-04-28 · via DEV Community

Clare Mwangi

SQL: What is it?

First of all, it stands for Structured Query language. It is one of the programming languages used to communicate with relational databases. It's used to store, extract and manipulate data in a database.

There are different SQL command categorizaions used to facilate the different uses of SQL.

These are:

1. DDL (Data Definition Language)

2. DML (Data Manipulation Language)

3. DQL (Data Query Language)

4. DCL ( Data Control Language)

5. TCL ( Transactional Control Language)

In this article, we'll be covering the first three types. Why? We are only just beginning and I'd like to take you step by step.

Say you've been tasked with building a database to store data, manipulate it and query it(retrieve). Which type of commands will you use?

Data Definition Language (DDL)

These are commands for defining and managing database structures.

They are:

  • CREATE: When you want to build something new like schemas and tables, this is the command to use.

Example;

        CREATE SCHEMA nairobi_academy;

        CREATE TABLE students (
            student_id SERIAL PRIMARY KEY,
            first_name VARCHAR(50),
            last_name VARCHAR(50)
       );

Enter fullscreen mode Exit fullscreen mode

  • ALTER: When you want to modify your existing table structure, say you forgot one column and would like to add it to your table without having to create the table afresh, this is the command to use.

Example;

       ALTER TABLE students
       ADD COLUMN phone_number VARCHAR(20);

Enter fullscreen mode Exit fullscreen mode

You later realize you don't need the phone numbers after all and would like to do away with them, this is the command to use.

Example;

       ALTER TABLE students
       DROP COLUMN phone_number;

Enter fullscreen mode Exit fullscreen mode

  • DROP: When you want to remove permanently.

Example;

      DROP TABLE students; 

Enter fullscreen mode Exit fullscreen mode

  • TRUNCATE: This is used when you want to remove all rows from your table but retain the table structure.

Example;

      TRUNCATE TABLE students;

Enter fullscreen mode Exit fullscreen mode

Data Manipulation Language (DML)

These are commands for working with data. So you have your tables ready and you want to input your data.

  • INSERT: We use this commands to fill in our records.

Example;

     `INSERT TABLE students (student_id, first_name, last_name)
     VALUES ('Clare', 'Mwangi'); 

Enter fullscreen mode Exit fullscreen mode

The reason as to why I have not included the student ID in my statement is because when 'CREATING' our table above, I used the function SERIAL which will auto-populate our ID's starting from the number 1. We'll talk about functions and constraints (primary key) later.

  • UPDATE: used when you want to modfify existing data e.g change a student's location because they relocated.

Example;

    ` UPDATE students
      SET city = 'Nairobi'
      WHERE student_id = 5;

Enter fullscreen mode Exit fullscreen mode

  • DELETE: This used when you want to remove specific data from your table because you no longer need it.

Example;

    ` DELETE FROM students
      WHERE result_id = 9;

Enter fullscreen mode Exit fullscreen mode

Data Query Language (DQL)

These are commands for retrieving data. You want to extract information from your database or rather ask questions so as to conduct your analysis and gain insights, this is the command to use:

  • SELECT:

Example;

    SELECT * 
    FROM students;

Enter fullscreen mode Exit fullscreen mode

This command will enable you view the entire students'table with its data.

   `SELECT * 
    FROM students
    WHERE city = 'Nairobi';

Enter fullscreen mode Exit fullscreen mode

This command will extract data only for students who come from Nairobi.

    SELECT result_id, student_id, grade
    From exam_results
    Where grade = 'A' AND grade = 'B';

Enter fullscreen mode Exit fullscreen mode

This command will return data from the exam_reults table of students who scored an A or B.

By now, you've noted we've been using where quite a bit to extract specific information from our tables. That is exactly what the WHERE CLAUSE is used for to filter datasets.

You may also need to categorize you data without altering the tables you created and are wondering what command to use;

CASE WHEN:

Example;

    SELECT * 
    CASE 
        when marks >= 80 then 'Distinction'
        when marks >= 60 then 'Merit'
        when marks >= 40 then  'Pass'
        else 'Fail'
    END as Performance 
    FROM exam_results;

Enter fullscreen mode Exit fullscreen mode

This is a big one, I know! It may look complicated but it's okay, I'll walk you through it.

What this command is doing is: First, it want to extract all columns' data from the exam_results table. Second, it wants to label the marks, this is where CASE WHEN comes into play. Anybody who scored an 80 and above will be labelled as having a 'Distinction' and so on and so forth. The END as performance gives the label column a name 'Performance'

This would be the output of our query:

So far so good! I would say. There is more coming.