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

推荐订阅源

Last Week in AI
Last Week in AI
阮一峰的网络日志
阮一峰的网络日志
P
Proofpoint News Feed
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
MongoDB | Blog
MongoDB | Blog
云风的 BLOG
云风的 BLOG
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
J
Java Code Geeks
WordPress大学
WordPress大学
T
The Blog of Author Tim Ferriss
V
Visual Studio Blog
小众软件
小众软件
Microsoft Azure Blog
Microsoft Azure Blog
博客园_首页
IT之家
IT之家
Vercel News
Vercel News
C
Check Point Blog
Google DeepMind News
Google DeepMind News
月光博客
月光博客
D
DataBreaches.Net
酷 壳 – CoolShell
酷 壳 – CoolShell
美团技术团队
Y
Y Combinator Blog
Hugging Face - Blog
Hugging Face - 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
PostgreSQL 22012 Error: Causes and Solutions Complete Guide
umzzil nng · 2026-06-04 · via DEV Community

umzzil nng

PostgreSQL Error 22012: Division by Zero

PostgreSQL error code 22012 (division_by_zero) is raised whenever the database engine encounters a division operation where the denominator evaluates to zero. Since dividing by zero is mathematically undefined, PostgreSQL immediately aborts the current transaction and returns this error. It can appear in simple arithmetic expressions, aggregate calculations, window functions, and any dynamic computation where a zero value unexpectedly ends up in the denominator.


Top 3 Causes

1. Direct Division by a Column That Contains Zero

The most common cause is dividing by a column that holds a zero value in one or more rows. Even if only a single row has a zero denominator, the entire query fails.

-- Triggers 22012 when quantity = 0 exists in the table
SELECT
    product_id,
    revenue / quantity AS unit_price
FROM sales;

-- Fix: use NULLIF to return NULL instead of erroring
SELECT
    product_id,
    revenue / NULLIF(quantity, 0) AS unit_price
FROM sales;

-- Fix with default fallback value
SELECT
    product_id,
    COALESCE(revenue / NULLIF(quantity, 0), 0) AS unit_price
FROM sales;

Enter fullscreen mode Exit fullscreen mode


2. Aggregate Function Result Used as Denominator

Using SUM(), COUNT(), or other aggregate results as a denominator is risky because certain groups may have no data or values that cancel out to zero.

-- Fails when a department has zero total sales
SELECT
    department_id,
    employee_id,
    individual_sales / SUM(total_sales) OVER (PARTITION BY department_id) AS ratio
FROM employee_sales;

-- Fix: wrap the window aggregate with NULLIF
SELECT
    department_id,
    employee_id,
    COALESCE(
        individual_sales
        / NULLIF(SUM(total_sales) OVER (PARTITION BY department_id), 0),
        0
    ) AS ratio
FROM employee_sales;

Enter fullscreen mode Exit fullscreen mode


3. Window Function or Dynamic Calculation in the Denominator

Using LAG(), LEAD(), or a dynamically computed expression as a denominator can produce zero when two consecutive values are identical or a computed difference cancels out.

-- Fails when consecutive prices are the same (LAG returns same value)
SELECT
    date,
    price,
    (price - LAG(price) OVER (ORDER BY date))
    / LAG(price) OVER (ORDER BY date) AS daily_return
FROM stock_prices;

-- Fix: protect the LAG result with NULLIF
SELECT
    date,
    price,
    COALESCE(
        (price - LAG(price) OVER (ORDER BY date))
        / NULLIF(LAG(price) OVER (ORDER BY date), 0),
        0
    ) AS daily_return
FROM stock_prices;

Enter fullscreen mode Exit fullscreen mode


Quick Fix: Reusable Safe Division Function

If division appears frequently across your codebase, encapsulate the logic in a helper function to keep queries clean and consistent.

CREATE OR REPLACE FUNCTION safe_divide(
    numerator   NUMERIC,
    denominator NUMERIC,
    fallback    NUMERIC DEFAULT NULL
)
RETURNS NUMERIC AS $$
BEGIN
    IF denominator IS NULL OR denominator = 0 THEN
        RETURN fallback;
    END IF;
    RETURN numerator / denominator;
END;
$$ LANGUAGE plpgsql IMMUTABLE;

-- Usage
SELECT product_id, safe_divide(revenue, quantity, 0) AS unit_price
FROM sales;

Enter fullscreen mode Exit fullscreen mode


Prevention Tips

  1. Add CHECK constraints at the table level to block zero values from being stored in columns that serve as denominators. This enforces data integrity at the database layer, independent of application-side validation.
ALTER TABLE sales
ADD CONSTRAINT chk_quantity_positive CHECK (quantity > 0);

Enter fullscreen mode Exit fullscreen mode

  1. Adopt NULLIF as a team coding standard for every division expression in SQL. Incorporate a linting rule in your CI/CD pipeline (e.g., via sqlfluff) to flag any bare / operator used without NULLIF wrapping the denominator. Catching the issue at review time is far cheaper than debugging it in production.

Related Errors

  • 22003 numeric_value_out_of_range — Triggered when a division result exceeds the target data type's range.
  • 22P02 invalid_text_representation — Can chain with 22012 in dynamic queries where string-to-number casting fails before division occurs.
  • 23514 check_violation — Intentionally raised by the CHECK constraint prevention strategy described above, effectively stopping bad data before it can cause a division by zero.

📖 Want a more detailed guide?
Check out the full in-depth version (Korean) on oraerror.com — includes detailed analysis, additional SQL examples, and prevention tips.