Collections:
Versions of SQL Server Transact-SQL
How do I tell what version of Transact-SQL my SQL Server is using?
✍: FYIcenter.com
The Transact-SQL version is the same as the SQL Server.
You can determine the SQL Server version using the following
Transact-SQL statement:
SELECT @@version ------------------------------------------------------------------------ Microsoft SQL Server 2014 - 12.0.2000.8 (Intel X86) Feb 20 2014 19:20:46 Copyright (c) Microsoft Corporation Express Edition on Windows NT 6.1 <X86> (Build 7601: Service Pack 1)
2017-06-16, 1035👍, 0💬
Popular Posts:
How To Round a Numeric Value To a Specific Precision in SQL Server Transact-SQL? Sometimes you need ...
Where to find answers to frequently asked questions on Using User Defined Functions in SQL Server Tr...
How To Find Out What Privileges a User Currently Has in Oracle? Privileges granted to users are list...
How To Execute a Stored Procedure in SQL Server Transact-SQL? If you want execute a stored procedure...
How To Count Rows with the COUNT(*) Function in SQL Server? If you want to count the number of rows,...