About 3,560,000 results
Open links in new tab
  1. SQL Data Types for MySQL, SQL Server, and MS Access - W3Schools

    An SQL developer must decide what type of data that will be stored inside each column when creating a table. The data type is a guideline for SQL to understand what type of data is …

  2. SQL Server Text type vs. varchar data type - Stack Overflow

    I have variable length character data and want to store in SQL Server (2005) database. I want to learn some best practices about how to choose TEXT SQL type or choose VARCHAR SQL …

  3. Data types (Transact-SQL) - SQL Server | Microsoft Learn

    Nov 6, 2024 · A data type is an attribute that specifies the type of data that the object can hold: integer data, character data, monetary data, date and time data, binary strings, and so on.

  4. ntext, text, and image (Transact-SQL) - SQL Server

    Mar 27, 2025 · The ntext, text, and image data types are deprecated data types for storing large non-Unicode and Unicode character and binary data.

  5. SQL Server TEXT data type example

    The TEXT data type in SQL Server is used to store large amounts of text data. It is typically used to store documents, articles, or other text-based content that exceeds the maximum length …

  6. How to Recognize SQL Text Data Type - LearnSQL.com

    Jan 3, 2017 · Learn the characteristics of every SQL text data type. Discover Oracle data type for large text, PostgreSQL fixed-size character text and more.

  7. TEXTSQL Tutorial

    In SQL, the TEXT data type is used to store a large amount of textual data. It is a variable-length character string data type that can store up to 2^31-1 bytes of data. The syntax for creating a …

  8. SQL Data Types - GeeksforGeeks

    Jan 30, 2025 · In this article, we will learn a comprehensive overview of SQL Data Types, their significance, and practical examples for various real-world scenarios. We will cover different …

  9. Handling The Text Data TypeSQLServerCentral

    Jan 8, 2003 · In this article I plan to show you various ways you can manipulate the data stored in a text data type. These techniques will be particularly useful when the number of characters in …

  10. SQL Server Data Types: Categories, Examples, and Best Practices

    Feb 27, 2025 · SQL Server data types are the foundation upon which your entire database structure rests. They define the kind of data you can store in each column, from simple …