Collections:
List of Data Types in SQL Server Transact-SQL
How many data types supported in SQL Server Transact-SQL? I want a list of all data types.
✍: FYIcenter.com
Here is a list of all Transact-SQL data types divided into 6 categories:
1. Exact Number - Used to hold numeric values truncated to a specific precision and scale.
2. Approximate Number - Used to hold numeric values with floating scales.
3. Data and Time - Used to hold dates and times.
4. Single-Byte Character Strings - Used to hold ASCII character strings.
5. Unicode Character String - Used to hold Unicode character strings.
6. Binary String - Used to hold binary strings.
7. Others - Used to hold other special types of data.
By the way, Transact-SQL supports the same list of data types as the SQL Server table columns.
For more information, see "Data Types (Transact-SQL)" at Microsoft Website.
⇒ Exact Numeric Data Types in SQL Server Transact-SQL
⇐ What Is Variable in SQL Server Transact-SQL
2017-04-22, 1756🔥, 0💬
Popular Posts:
What is SQL Server Transact-SQL (T-SQL)? SQL Server Transact-SQL, also called T-SQL, is an extension...
How To Divide Query Output into Multiple Groups with the GROUP BY Clause in SQL Server? Sometimes, y...
How To Update Multiple Rows with One UPDATE Statement in SQL Server? If the WHERE clause in an UPDAT...
How to download Microsoft SQL Server 2005 Express Edition in SQL Server? Microsoft SQL Server 2005 E...
What Happens If the UPDATE Subquery Returns Multiple Rows in MySQL? If a subquery is used in a UPDAT...