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)
⇒ Is SQL Server Transact-SQL Case Sensitive?
⇐ What Is SQL Server Transact-SQL (T-SQL)?
2017-06-16, 3196🔥, 0💬
Popular Posts:
How To Start MySQL Server in MySQL? If you want to start the MySQL server, you can run the "mysqld" ...
Collections: Interview Questions MySQL Tutorials MySQL Functions Oracle Tutorials SQL Server Tutoria...
How To Create a Table Index in Oracle? If you have a table with a lots of rows, and you know that on...
How To Present a Past Time in Hours, Minutes and Seconds in MySQL? If you want show an article was p...
Can You Drop an Index Associated with a Unique or Primary Key Constraint in Oracle? You can not dele...