Collections:
DECLARE Statements in SQL Server Transact-SQL
How to declare a variable in SQL Server Transact-SQL? How to use the DECLARE statements?
✍: FYIcenter.com
In Transact-SQL, you must use DECLARE statements to declare variables.
Declaring a variable is to define the variable name and the variable data type.
In Transact-SQL, you can:
Here are some example on how to declare variables in Transact-SQL:
DECLARE @country CHAR(3); DECLARE @name NVARCHAR(80), @city NVARCHAR(80); DECLARE @price MONEY = 9.99; DECLARE @now DATETIME = GETDATE();
⇒ SET Statements in SQL Server Transact-SQL
⇐ Binary String Data Types in SQL Server Transact-SQL
2017-04-04, 2688🔥, 0💬
Popular Posts:
How to detect the collation coercibility associated to a given character string using the COERCIBILI...
How To Start the Command-Line SQL*Plus in Oracle? If you Oracle server or client installed on your w...
How To Calculate DATETIME Value Differences Using the DATEDIFF() Function in SQL Server Transact-SQL...
How to download and install SQL Server 2005 Sample Scripts in SQL Server? If you want to learn from ...
What Are the Differences between DATE and TIMESTAMP in Oracle? The main differences between DATE and...