About 353,000 results
Open links in new tab
  1. decimal and numeric (Transact-SQL) - SQL Server | Microsoft Learn

    Nov 18, 2025 · Transact-SQL reference for the decimal and numeric data types. Decimal and numeric are synonyms for numeric data types that have a fixed precision and scale.

  2. SQL Data Types for MySQL, SQL Server, and MS Access - W3Schools

    The data type of a column defines what value the column can hold: integer, character, money, date and time, binary, and so on.

  3. Understanding the SQL Decimal data type

    Jul 15, 2019 · This article aims to walk you through the SQL Decimal data type and its usage with various examples. We will also see how we can exercise this data type in SQL Server to help make …

  4. SQL Server DECIMAL Data Type - GeeksforGeeks

    Jul 23, 2025 · In SQL Server, when you need numbers to be super precise, like in financial calculations, you use the DECIMAL data type. It's like a special box for storing exact numbers and no rounding off! …

  5. SQL Data Type Selection: Decimal vs Float vs Real Precision

    Jul 29, 2025 · Explore key differences between SQL Server's Decimal, Float, and Real data types, focusing on precision requirements for financial and exact numeric operations.

  6. How to Store Decimal Values in SQL Server: Fixing decimal(18,0) …

    Dec 20, 2025 · This blog will demystify SQL Server’s `decimal` data type, explain why `decimal (18,0)` is problematic, guide you through fixing existing `decimal (18,0)` columns, and help you choose the …

  7. DECIMALSQL Tutorial

    The SQL DECIMAL data type is used to represent fixed-point numeric values with exact precision. It is commonly used in financial and accounting applications where precision and accuracy are of utmost …

  8. 14.24.2 DECIMAL Data Type Characteristics - MySQL

    Values for DECIMAL columns are stored using a binary format that packs nine decimal digits into 4 bytes. The storage requirements for the integer and fractional parts of each value are determined …

  9. How to Store Decimal Values in SQL Baeldung on SQL

    Aug 29, 2024 · In this tutorial, we’ll explore how to store decimal values in SQL databases effectively. In addition, we’ll cover the available data types, how to define them correctly, and how to avoid …

  10. SQL Decimal: Guide and Examples | Database Star: Home

    Oct 6, 2022 · SQL Decimal is a data type for storing numbers with decimal places. It's available in several databases, as it's part of the ANSI standard, and is an exact number (as opposed to float …