Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

What is the difference between MSSQL and TSQL?

Tags:

MSSQL and T-SQL are often thrown around as interchangeable synonyms on the web.

I know that T-SQL is a flavor of SQL used in many Microsoft products. Is MS-SQL actually another flavor of Microsoft owned SQL or is it just an umbrella term used by the Microsoft’s marketing department to refer to their server database solutions?

As a side question, what flavor SQL, if any, does MS Access use?

like image 616
Chopo87 Avatar asked Mar 26 '13 13:03

Chopo87


People also ask

Is Mssql and T-SQL same?

The obvious difference is in what they are designed for: SQL is a​ query language used for manipulating data stored in a database. T-SQL is also a query language, but it's an extension of SQL that is primarily used in Microsoft SQL Server databases and software.

Does mssql use T-SQL?

Like other RDBMS software, Microsoft SQL Server is built on top of SQL, a standardized programming language that database administrators (DBAs) and other IT professionals use to manage databases and query the data they contain.

What is SQL Server T-SQL?

T-SQL (Transact-SQL) is a set of programming extensions from Sybase and Microsoft that add several features to the Structured Query Language (SQL), including transaction control, exception and error handling, row processing and declared variables.

What is the difference between Mssql and SQL Server?

Q #2) What is the difference between SQL and MS SQL? Answer: The main difference between SQL and MS SQL is that SQL is a query language that is used in relation databases whereas MS SQL Server is itself a relational database management system (RDBMS) developed by Microsoft.


1 Answers

MS SQL is simply a short version of the (complete) product name Microsoft SQL Server. (Similar to "MS Office", "MS Windows" or "MS Access").

T-SQL is the SQL dialect that the product Microsoft SQL Server is using - and is short for "Transact-SQL" (thanks Aaron for reminding me!)

I wouldn't call the dialect that Microsoft Access is using SQL. It's a query language that somehow resembles SQL

like image 94
a_horse_with_no_name Avatar answered Sep 23 '22 15:09

a_horse_with_no_name