Hi Angie,
Thank you for posting your question on the Microsoft Windows Forum. Please find the answer bellow:
How to check your SQL Server version:
You can find out what version of SQL Server you're using by running the following query in SQL Server Management Studio (SSMS) or any SQL query tool connected to your database:
SELECT @@VERSION;
This will return something like:
Microsoft SQL Server 2019 (RTM-CU18) (KB5000642) - 15.0.4261.1 (X64)
From this output, you’ll know:
- The major version (e.g., SQL Server 2019)
- The build number
- Whether it’s 32-bit or 64-bit
Happy to help!
Best regards,
Nam Bui.