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, 1913🔥, 0💬
Popular Posts:
How To Convert Binary Strings into Integers in SQL Server Transact-SQL? Binary strings and integers ...
How To Set Up SQL*Plus Output Format in Oracle? If you want to practice SQL statements with SQL*Plus...
How To Break Query Output into Pages in MySQL? If you have a query that returns hundreds of rows, an...
What Is a Parameter File in Oracle? A parameter file is a file that contains a list of initializatio...
How To Drop a Stored Procedure in Oracle? If there is an existing stored procedure and you don't wan...