c# .net Adsense ADO.NET Linq Viruses/security asp.net MVC JQuery Angular-js Node-js SEO Java C++ SQL API Networking vb.net .Net Css JavaScript Generics c#.Net entity framework HTML Website host Website Construction Guide HTTP tutorial W3C tutorial Web Services JSON Psychology Ionic framework Angular ReactJS Python Computer Android
SQL

How to find SQL server database version and SQL server Editon?

| | SQL

You can identify the SQL server database version and SQL server Editon of installed product in PC/server by using the following SQL script.

Open the SQL server Management studio by typing ‘ssms’ in the Run command window and connect the database. 

Now open Query window and paste the following SQL script code. 

SELECT @@VERSIONAS SQL_Version
GO

SELECT SERVERPROPERTY('edition') as SQL_Editon
GO

Output:

find SQL server database version and SQL server Editon